Browsing index pages (2 articles)
↧
How to store and read common data in redis from python and rust?
I have some data being stored in redis cache which will be read by my application in Rust. The data is being stored by python. Whenever I am storing a string or an array, it stores it in a weird form...
View ArticleAnswer by Sébastien Renauld for How to store and read common data in redis...
Ah, the joys of trying to throw data across environments. The thing you're being bitten by right now is called Pickle and is the default serializer of django-redis. What a serializer does in this case...
View Article
Browsing index pages (2 articles)