skip to Main Content

Redis – how to print the delete key result enum as string

I am delete a key from redis when using rust, this is part of the code looks like: pub async fn del_redis_key(key: &str,) -> Result<()> { let config_redis_string = get_config("redisConnectionStr"); let redis_con_string: &str = config_redis_string.as_str(); let redis_client = redis::Client::open(redis_con_string).expect("can create…

VIEW QUESTION

Support for pipeline with redis-json in Golang

We recently started to work with redis-json (github.com/nitishm/go-rejson/v4) and redis-search (github.com/RediSearch/redisearch-go/redisearch) clients in Golang. We need to support bulk insert operations of json objects and we don't want to use transactions. Is there a way to implement a pipeline with…

VIEW QUESTION
Back To Top
Search