Releases: Kdyby/Redis
v1.0.4
Do not install this realease, tests didn't pass on Travis.
v2.3.0
- Storage uses only one key for both metadata and data itself, which means that the storage sends only half of the requests now. [BC BREAK]
- Option to disable cache locks in data storage
redis:
storage: {locks: off}
This means the storage is on, and is not using locks.
WARNING: please flush your cache completely before upgrading. The data format is not compatible.
v2.2.0
Non-native session handler with locks is back!
I was sad that the native handler doesn't care about locks (which I didn't notice till recently), so I had to revert the old session handler written in PHP. The native is still default, but this pull adds new option to turn it back on
redis:
session:
native: off
There should be no problem in session data compatibility. It should just work.
Also, thanks to @matej21, the journal has new internal structure, which should be exponentially faster on absurd numbers (hundreds of thousands or even milions) of tagged keys.
- Don't forget to flush your cache!
v2.1.3
v2.1.2
v2.1.1
Lua journal
This new journal takes advantage of Redis's scripting feature. You can create scripts in lua and Redis will execute them for you. This lowers latency and dramatically decreases number of requests that has to be send.