mbr / simplekv

A simple key-value store for binary data.
http://simplekv.readthedocs.io
MIT License
152 stars 50 forks source link

Fixed an issue that would appear in redis < 2.6 #20

Closed philmaweb closed 9 years ago

philmaweb commented 9 years ago

When using AWS you are forced to work with python<2.7, so redis is not up to date either. It's a very small fix, psetex uses miliseconds while setex uses seconds, but as we use a timedelta * 1000, setex is sufficient.

philmaweb commented 9 years ago

Actually you can upgrade to a more recent version of python, or just use a virtual-environment altogether.