|
|
|
|
|
by kristoff_it
2247 days ago
|
|
I'm a dev advocate at Redis Labs so I'm just going to reply about the last point about the protocol from my developer PoV. Thanks to RESP3 I was able to write this client that, combined with Zig's comptime metaprogramming, can do things that no other Redis client that I've seen can do. The user gives the desired response type and the client is able to provide appropriate translation based on what the RESP3 reply is. This would still be possible with RESP2, but v3 makes it much more robust and explicit, to the point that the ease becomes transparent without looking magical and/or triggering confusing corner cases. https://github.com/kristoff-it/zig-okredis |
|