awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesFilter State Serialization

Persistence of probabilistic filter configurations and states to stable storage.

Distinct from Persistent Application State: Specifically covers the serialization of filter states to JSON, not general session or job state.

Explore 2 awesome GitHub repositories matching data & databases · Filter State Serialization. Refine with filters or upvote what's useful.

Awesome Filter State Serialization GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • rt2zz/redux-persistAvatar de rt2zz

    rt2zz/redux-persist

    12,969Voir sur GitHub↗

    redux-persist is a state persistence library for Redux that saves and restores store state to a storage engine to maintain data across sessions. It functions as a state rehydration tool and serialization middleware, loading previously saved application state back into the Redux store during the initialization process. The library includes a schema migration utility to transform persisted state data from older versions to newer schemas, ensuring compatibility after application updates. It also provides state serialization transformations to modify state objects before they are written to or re

    Provides the ability to specify exactly which slices of the Redux state tree should be persisted to storage.

    TypeScript
    Voir sur GitHub↗12,969
  • dgraph-io/ristrettoAvatar de dgraph-io

    dgraph-io/ristretto

    6,932Voir sur GitHub↗

    Ristretto is a high-performance in-memory cache and concurrent key-value store for Go applications. It provides a thread-safe memory store that manages strict memory bounds and employs probabilistic set filters to reduce lookup overhead. The system is distinguished by an admission-policy cache that utilizes frequency sketches and cost-based eviction to maximize hit ratios. It minimizes contention and improves throughput through the use of striped ring buffers and concurrent map sharding. The project covers a broad range of data management capabilities, including time-based expiration, item f

    Provides functionality to serialize filter settings to JSON to preserve configuration across application restarts.

    Go
    Voir sur GitHub↗6,932
  1. Home
  2. Data & Databases
  3. Persistent Application State
  4. Filter State Serialization

Explorer les sous-tags

  • State Tree WhitelistingSelective persistence of specific state tree branches using include or exclude lists. **Distinct from Filter State Serialization:** Focuses on slicing the application state tree for persistence, whereas Filter State Serialization is about probabilistic filter states.