Re: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-31 Thread Pavel Tupitsyn
ithout deserialising the entire cached item. > > > > *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] > *Sent:* Friday, August 4, 2017 10:10 PM > > *To:* user@ignite.apache.org > *Subject:* Re: Accessing array elements within items cached in Ignite > without deserialisi

RE: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-30 Thread Raymond Wilson
cached item. *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] *Sent:* Friday, August 4, 2017 10:10 PM *To:* user@ignite.apache.org *Subject:* Re: Accessing array elements within items cached in Ignite without deserialising the entire item > git refused to clone the repo in GitExtensions &

Re: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-04 Thread Pavel Tupitsyn
bly a nice way to genericize this across multiple array > types, but it’s useful as an example. > > > > In this way you can operate on the data without the need to move it around > all the time between unmanaged and managed contexts. > > > > Thanks, > > Ra

RE: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-03 Thread Raymond Wilson
:* user@ignite.apache.org *Subject:* Re: Accessing array elements within items cached in Ignite without deserialising the entire item Great! Here's .NET development page, in case you haven't seen it yet: https://cwiki.apache.org/confluence/display/IGNITE/Ignite.NET+Development Let me

Re: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-03 Thread Pavel Tupitsyn
t; > > *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] > *Sent:* Wednesday, August 2, 2017 9:08 PM > > *To:* user@ignite.apache.org > *Subject:* Re: Accessing array elements within items cached in Ignite > without deserialising the entire item > > > > Actually,

RE: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-02 Thread Raymond Wilson
...@apache.org] *Sent:* Wednesday, August 2, 2017 9:08 PM *To:* user@ignite.apache.org *Subject:* Re: Accessing array elements within items cached in Ignite without deserialising the entire item Actually, you are right, we can add this easily, because internal API allows random stream access

Re: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-02 Thread Pavel Tupitsyn
t; Regarding random access into arrays, is this something that is on the > books for a future version? > > Thanks, > > Raymond. > > > > *From:* Pavel Tupitsyn [mailto:ptupit...@apache.org] > *Sent:* Tuesday, August 1, 2017 11:31 PM > *To:* user@ignite.apache.org &

RE: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-01 Thread Raymond Wilson
:* Pavel Tupitsyn [mailto:ptupit...@apache.org] *Sent:* Tuesday, August 1, 2017 11:31 PM *To:* user@ignite.apache.org *Subject:* Re: Accessing array elements within items cached in Ignite without deserialising the entire item Hi Raymond, First of all, BinaryObject is a cross-platform concept

Re: Accessing array elements within items cached in Ignite without deserialising the entire item

2017-08-01 Thread Pavel Tupitsyn
Hi Raymond, First of all, BinaryObject is a cross-platform concept, it exists in C#, C++, Java. >From C# point of view there are some inconsistencies (like nullable Guid, or non-generic collections), but these things are dictated by the existing protocol, so we can't change them. In most cases you

Accessing array elements within items cached in Ignite without deserialising the entire item

2017-07-31 Thread Raymond Wilson
Hi, I’ve been looking at IBinarizable and IBinarySerializer with regards to controlling object serialization (using the Ignite.Net client). A couple of questions: 1. Some of the APIs in IBinarizable allow for a factory methods to control construction of collection and dictionary elem