actix / examples

Community showcase and examples of Actix Web ecosystem usage.
Apache License 2.0
3.64k stars 799 forks source link

actix_redis protocol error #444

Open warunyoud opened 3 years ago

warunyoud commented 3 years ago
let res = redis.send(Command(resp_array!["SET", "mydomain:one", 2])).await??;

By following the example here. https://github.com/actix/examples/blob/master/database_interactions/redis/src/main.rs

I get this:

---->Error("ERR Protocol error: expected \'$\', got \':\'")

This seems like something related to the encoder.

robjtede commented 3 years ago

what version of redis are you running (in case it matters) ?