ovflowd / yupi

:game_die: open source gaming emulator for flash based games
MIT License
30 stars 15 forks source link

Redis - Caching System (very fast) #137

Closed necm1 closed 8 years ago

necm1 commented 8 years ago

We should use Redis for Caching (Redis is the fastest key storage). http://redis.io/

ovflowd commented 8 years ago

We will analyse if is good for us. @Nenji can you say the features of Redis ?

TheDoct0r11 commented 8 years ago

I don't think that we need Redis. NHibernate already got First Level Caching by default and we can additionally activate second level caching, when we get around to do so.

Yupi just uses very few ram on startup, because the cache is a real cache: On first request, it WILL result in a cache miss, but on subsequent requests (by id), NHibernate should return the data from cache (cache hit).

ovflowd commented 8 years ago

As we see, isn't necessary now. Closing Issue. If anyone want to open again feel free.