imgflo / imgflo-server

HTTP image processing server based on imgflo
48 stars 7 forks source link

Redis keys does not have expiration times #50

Closed jonnor closed 8 years ago

jonnor commented 8 years ago

Right now we are not making use of Redis capability to drop keys when reaching memory pressure - which can cause us to run out of memory.

Seems like this will require us to use set (with namespaced keys) + expire instead of hset, since there is no way to address a single field within a hashtable.