You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new safe ThreadSafeContext API (see below) replaces the old raw Context::get_thread_safe_context() API
RedisError no longer implements From<&str> (due #102, this is no longer possible). Instead of using Err("...".into()), use Err(RedisError::String()) or Err(RedisError::Str()) explicitly. While this requires changes, it removes magic, leading to clearer code.
User-facing Changes
New idiomatic ThreadSafeContext and BlockedClient APIs provide a safe Rust wrapper around the related Redis module APIs