scan命令的基本用法 SCAN命令是一个基于游标的迭代器(cursor based iterator):SCAN命令每次被调用之后, 都会向用户返回一个新的游标, 用户在下次迭代时需要使用这个新游标作为SCAN命令的游标参数, 以此来延续之前的迭代过程。 当SCAN命令的游标参数被设置为0时, 服务器将开始一次新的迭代, 而当服务器向用户返回值为...
b"SCAN"|b"CLIENT SETNAME"|b"SHUTDOWN"|b"SLAVEOF"|b"REPLICAOF"|b"MOVE" |b"BITOP"=>None, b"SCAN"|b"SHUTDOWN"|b"SLAVEOF"|b"REPLICAOF"|b"MOVE"|b"BITOP"=>None, b"EVALSHA"|b"EVAL"=>{ letkey_count = r .arg_idx(2)
+1 −1 redis/examples/async-scan.rs +12 −5 redis/src/aio/connection.rs +6 −0 redis/src/aio/mod.rs +4 −1 redis/src/aio/multiplexed_connection.rs +32 −0 redis/src/client.rs +64 −30 redis/src/cluster_async/connections_container.rs +102 −0 redis/src/cluster...
Commands, ControlFlow, Direction, LposOptions, PubSubCommands, ScanOptions, SetOptions, }; pub use crate::connection::{ parse_redis_url, transaction, Connection, ConnectionAddr, ConnectionInfo, ConnectionLike, IntoConnectionInfo, Msg, PubSub, RedisConnectionInfo, TlsMode, io::ConnectionDriver, parse...
Commands, ControlFlow, Direction, LposOptions, PubSubCommands, ScanOptions, SetOptions, }; pub use crate::connection::{ parse_redis_url, transaction, Connection, ConnectionAddr, ConnectionInfo, ConnectionLike, IntoConnectionInfo, Msg, PubSub, RedisConnectionInfo, TlsMode, io::ConnectionDriver, parse...
b"SCAN" | b"CLIENT SETNAME" | b"SHUTDOWN" | b"SLAVEOF" | b"REPLICAOF" | b"MOVE"| b"BITOP" => None,b"SCAN" | b"SHUTDOWN" | b"SLAVEOF" | b"REPLICAOF" | b"MOVE" | b"BITOP" => None, b"EVALSHA" | b"EVAL" => { ...
fn sscan_match<K: ToRedisArgs, P: ToRedisArgs, RV: FromRedisValue> (&mut self, key: K, pattern: P) -> RedisResult<Iter<'_, RV>> { let mut c = cmd("SSCAN"); c.arg(key).cursor_arg(0).arg("MATCH").arg(pattern); ...
RedisConnectionInfo, RedisError, RedisFuture, RedisResult, ScanOptions, ToRedisArgs, Value, }; use rstest::rstest; @@ -1483,8 +1483,6 @@ mod basic_async { #[cfg_attr(feature = "async-std-comp", case::async_std(RuntimeType::AsyncStd))] #[cfg(feature = "connection-manager")] fn...
b"MSET"|b"MSETNX"=>RouteBy::MultiShardWithValues, b"MSET"=>RouteBy::MultiShardWithValues, // TODO - special handling - b"SCAN" b"SCAN"|b"SHUTDOWN"|b"SLAVEOF"|b"REPLICAOF"=>RouteBy::Undefined, Expand Down 0 comments on commitc974277 Pleasesign into comment....
add ability to specify count for scan match #1201 closed Jun 27, 2024 is there a reason test_block_on_all_panics_from_spawns test is not marked as #[should_panic]? #1234 closed Jun 24, 2024 [Redis Cluster] How scan by every nodes #1230 closed Jun 21, 2024 multiplex connectio...