Changelog¶
0.10.0¶
- simplekv no longer depends on
six
. - The
PrefixDecorator
works more as expected. - An experimental git-based store has been added in
GitCommitStore
.
0.9.2¶
- Added
PrefixDecorator
.
0.9¶
- Deprecated the
UrlKeyValueStore
, replaced by flexible mixins likeUrlMixin
. - Added
TimeToLiveMixin
support (onRedisStore
andMemcacheStore
).
0.6¶
- Now supports redis backend:
RedisStore
. - Fixed bug: No initial value for String() column in SQLAlchemy store.
0.5¶
- Maximum key length that needs to be supported by all backends is 250 characters (was 256 before).
- Added memcached backend:
MemcacheStore
- Added SQLAlchemy support:
SQLAlchemyStore
- Added
simplekv.cache
module.
0.4¶
0.3¶
- Major API Change: Mixins replaced with decorators (see
simplekv.idgen.HashDecorator
for an example) - Added simplekv.crypt
0.1¶
- Initial release