You can now directly sync Postgres with Redis
1–10 of 21 posts
Re: You can now directly sync Postgres with Redis
#2Re: You can now directly sync Postgres with Redis
#3Re: You can now directly sync Postgres with Redis
#4Re: You can now directly sync Postgres with Redis
#5Since db cache consistency is a complex research space with things like https://readyset.io/ and https://www.usenix.org/system/files/conference/nsdi13/nsdi13... it would be great to hear more specifics about what this is giving up in order to sidestep all that complexity.
Re: You can now directly sync Postgres with Redis
#6No Pricing information nor an open-source project. I don't know what to do with this product.
https://github.com/redfly-ai-org/redfly.ai/blob/main/LICENSE
Re: You can now directly sync Postgres with Redis
#7Re: You can now directly sync Postgres with Redis
#8No Pricing information nor an open-source project. I don't know what to do with this product.
Assuming the link to the repo is correct: it's open source. https://github.com/redfly-ai-org/redfly.ai/blob/main/LICENSE
The code in the repo just seems to be connection code ("provides a way for anybody to test our Redis synchronization service on demand") rather than the sync service itself
Re: You can now directly sync Postgres with Redis
#9> public const string AesKey = ...
Also, the way AES is used in the code is not good practice. It seems to be using plain AES ( https://learn.microsoft.com/en-us/dotnet/api/system.security... ), which isn't meant to be used bare like that. It needs to be coupled with a digest algorithm to protect the ciphertext. Maybe use AesGcm instead?