我正在使用GridGain .Net客户端的附加/前置功能,这是正确的方法吗?以及从此列表中删除项目的推荐方法是什么?
IGridClientData cache = client.Data("partitioned_tx");
cache.Put<string, long[]>("testlist", new long[] { 1L});
cache.Append<string, long[]>("testlist", new long[] { 2L});
cache.Prepend<string, long[]>("testlist", new long[] { 0L});
var testlist = cache.GetItem<string, System.Collections.ArrayList>("testlist");
long[] array = (long[])test.ToArray(typeof(long));
答案 0 :(得分:1)
从GridGain 6.2.0-rc2开始,您可以直接在缓存中存储可移植对象列表,而无需将它们转换为数组。
此处提供了有关可移植对象的更多信息:GridGain + .NET Client Connection Warnings / Dropouts