Skip to content

1.0.6

Compare
Choose a tag to compare
@dvirsky dvirsky released this 30 Jan 13:15
· 3303 commits to master since this release

This is a bug-fix release that fixes two important issues:

  1. Fixed #277 - crashes on BGSAVE after AOF rewrite and reload with sortable fields. This is a super critical fix if you're using AOF and sortable fields, not urgent if not.

  2. Safe indexing and search from Lua and MULTI. Since Redis 4.0.6 (current version is 4.0.7) it is possible for the module to know if a command is running in the context of MULTI or a Lua script - which means we can't run it in a concurrent way. We now take advantage of this fact to allow for "safe" non concurrent indexing and search in this situation, without the need to use SAFEADD of load the module in SAFEMODE.