Danga 客户端保存的 memcached 条目与 Spy 客户端兼容吗?

发布于 2024-08-27 08:04:57 字数 344 浏览 10 评论 0原文

使用 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,g

Spy
,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幻想少年梦 2024-09-03 08:04:57

是的,查看 转码器 了解有关如何在网络上进行编码的更多信息。

具体来说,我有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文