Crates.io | redis-cas |
lib.rs | redis-cas |
version | 1.1.0 |
source | src |
created_at | 2022-10-10 18:06:16.162111 |
updated_at | 2024-03-22 00:37:47.274719 |
description | Redis native module to add support for compare and swap |
homepage | |
repository | https://github.com/Bajix/redis-cas/ |
max_upload_size | |
id | 684800 |
size | 5,397 |
Redis native module to add support for compare and swap
CAS key current_value new_value
Compare the value of a key and set if the passed current value hasn't changed
Returns number of modified keys
127.0.0.1:6379> set foo bar
OK
127.0.0.1:6379> cas foo bar baz
(integer) 1
127.0.0.1:6379> cas foo bar baz
(integer) 0
task load-redis-module