2014-07-09 3 views
1

GridGain .Net 클라이언트의 Append/Prepend 기능을 사용하고 있습니다. 올바른 방법입니까? 그리고이 목록에서 항목을 제거하는 권장 방법은 무엇입니까?GridGain : 목록에서 키를 제거하는 올바른 방법

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)); 

답변