Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beacon-biosignals/serializationcaches.jl
https://github.com/beacon-biosignals/serializationcaches.jl
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/beacon-biosignals/serializationcaches.jl
- Owner: beacon-biosignals
- License: other
- Created: 2020-02-28T16:48:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-05T14:48:11.000Z (7 months ago)
- Last Synced: 2024-11-10T06:16:30.340Z (5 days ago)
- Language: Julia
- Size: 28.3 KB
- Stars: 6
- Watchers: 22
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SerializationCaches.jl
[![CI](https://github.com/beacon-biosignals/SerializationCaches.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/beacon-biosignals/SerializationCaches.jl/actions/workflows/CI.yml)
[![codecov](https://codecov.io/gh/beacon-biosignals/SerializationCaches.jl/branch/master/graph/badge.svg?token=Q8BQBGO9G5)](https://codecov.io/gh/beacon-biosignals/SerializationCaches.jl)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://beacon-biosignals.github.io/SerializationCaches.jl/stable)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://beacon-biosignals.github.io/SerializationCaches.jl/dev)A Julia package that implements a simple two-stage cache (the `SerializationCache`) that is useful for caching objects that take significantly longer to compute from scratch than to (de)serialize from disk. Recently fetched objects are cached within an in-memory data structure, while less recently fetched objects are (de)serialized to/from the filesystem via Julia's `Serialization` module.
See the package's documentation for more details.