Danga 客户端保存的 memcached 条目与 Spy 客户端兼容吗?
使用 Danga 客户端将字符串值保存到 memcached 后,我尝试使用 Spy 客户端获取该条目。两个字符串值不相同。 Danga 客户端检索一个字符串,该字符串前面附加了一个空字符,因此违反了相等条件。
丹加
t、e、s、t、s、t、r、i、n、g间谍
,t,e,s,t,s,t,r,i,n,g
我还尝试使用 Danga 客户端保存序列化地图并使用 Spy 客户端获取地图。 Spy 客户端只能获取字符串形式的 Map。该字符串包含二进制值。
有没有人能够使用 Spy 客户端正确获取 Danga 客户端保存的 memcached 条目?
After saving a String value into memcached using the Danga client, I attempted to get the entry using the Spy client. The two String values are not the same. The Danga client retrieves a string with an additional empty char prepended to the string, therefore violating the equality condition.
Danga
t,e,s,t,s,t,r,i,n,gSpy
,t,e,s,t,s,t,r,i,n,g
I also attempted to save a serialized Map using the Danga client and get the Map using the Spy client. The Spy client is able to only get a String form of the Map. The string contains binary values.
Has anyone been able to get a Danga client-saved memcached entry correctly using the Spy client?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,查看 转码器 了解有关如何在网络上进行编码的更多信息。
具体来说,我有 WhalinTranscoder 对于最新版本和 WhalinV1Transcoder< /a> 用于处理旧版本。
您可以使用 ConnectionFactoryBuilder 来配置转码器实例以获得不同的行为。
Yes, look at the transcoders for more information of how things get encoded on the network.
Specifically, I have WhalinTranscoder for the recent versions and WhalinV1Transcoder for dealing with older versions.
You can use a ConnectionFactoryBuilder to configure your transcoder instance to get different behaviors.