Giter VIP home page Giter VIP logo

Comments (3)

TheCloudlessSky avatar TheCloudlessSky commented on August 18, 2024
  1. Yes, the generation can be increased when Clear() is called or if someone poked around Redis and deleted the cache keys (including the generation key). Maybe an external tool did this. Also it means that an O(1) operation to clear the cache can be achieved by clearing the generation and having the next requests to the cache see that the generation is out of date.
  2. The key it is put into a set so that they can be enumerated upon (for example by another tool). Otherwise, you'd have to use a KEYS command on your whole database in Redis just to find the matching NHibernate keys (really bad performance). For some of my applications, we expose the set in a UI so that we know what items are cached for the current generation.

from nhibernate.caches.redis.

jiangshilin avatar jiangshilin commented on August 18, 2024

The keyset will occupy many redis's memory, and the memory is precious especially in production environment. So there should be a switch to close that feature.

from nhibernate.caches.redis.

TheCloudlessSky avatar TheCloudlessSky commented on August 18, 2024

The set only stores the key name (and it's serialized/compressed internally by Redis). I have several production instances where the large (> 100) cache key sets take up about 10KB of total memory. That shouldn't be much of a concern if you're worried about memory since your using this cache. If anything, you should be concerned about the cached values and how they're serialized to optimize for space.

from nhibernate.caches.redis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.