我使用redis作为缓存。
我所有的数据都是16字节的散列。我想为这个用例优化redis。
目前,我正在通过以下方式保存和获取哈希值:
r.set(hash, b"A") # Sets hash in the cache
r.get(hash) # if result is not None, then I know that hash is in cache.
几个具体问题:
有没有办法在设置阶段不使用任意字节来节省一些空间?
有没有办法配置redis,让我所有的数据都是16字节,并以最佳方式保存?
欢迎提供任何额外的提示。
暂无答案!
目前还没有任何答案,快来回答吧!