Re: Re: Store objects as IBinaryobject in cadche

2019-11-19 Thread Ilya Kasnacheev
sole.WriteLine(binaryObject); >>>>>>> } >>>>>>> >>>>>>> >>>>>>> On Fri, Nov 15, 2019 at 5:20 PM Ilya Kasnacheev < >>>>>>> ilya.kasnach...@gmail.com> wrote: >>>>>>> >>>

Re: Re: Store objects as IBinaryobject in cadche

2019-11-19 Thread Ilya Kasnacheev
h...@gmail.com> wrote: >>>>>> >>>>>>> Hello! >>>>>>> >>>>>>> You can try using ignite.binary().ToBinary(obj). >>>>>>> >>>>>>> However, in your case, i

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Manan Joshi
ectly and produce BinaryObjects from input data using >>>>>> builder. >>>>>> >>>>>> Regards, >>>>>> -- >>>>>> Ilya Kasnacheev >>>>>> >>>>>> >>>>>> пт, 15 нояб. 2019 г. в 17:15, Manan

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Pavel Tupitsyn
gt;>>> >>>>> >>>>> пт, 15 нояб. 2019 г. в 17:15, Manan Joshi : >>>>> >>>>>> I am reading the data using dapper from the database i am not sure >>>>>> how to convert fromSystem.Collections.Generic.

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Manan Joshi
>>>> Manan Joshi >>>>> >>>>> On Fri, Nov 15, 2019 at 8:46 AM Alexandr Shapkin >>>>> wrote: >>>>> >>>>>> You can also refer to the BinaryModeExample.cs >>>>>> <https://github.com/apa

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Pavel Tupitsyn
che.Ignite.Core.Binary.IBinaryObject. >>>> >>>> Thanks >>>> Manan Joshi >>>> >>>> On Fri, Nov 15, 2019 at 8:46 AM Alexandr Shapkin >>>> wrote: >>>> >>>>> You can also refer to the BinaryModeExample.cs >

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Manan Joshi
les/Datagrid/BinaryModeExample.cs> >>>> example and the docs [1] >>>> >>>> >>>> >>>> [1] - >>>> https://apacheignite-net.readme.io/docs/binary-mode#section-creating-binary-objects >>>> >>>>

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Pavel Tupitsyn
.cs> >>> example and the docs [1] >>> >>> >>> >>> [1] - >>> https://apacheignite-net.readme.io/docs/binary-mode#section-creating-binary-objects >>> >>> >>> >>> *From: *Ilya Kasnacheev >>> *Sent: *Friday,

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Ilya Kasnacheev
docs/binary-mode#section-creating-binary-objects >> >> >> >> *From: *Ilya Kasnacheev >> *Sent: *Friday, November 15, 2019 4:13 PM >> *To: *user@ignite.apache.org >> *Subject: *Re: Store objects as IBinaryobject in cadche >> >> >> >&g

Re: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Manan Joshi
gt; > > > *From: *Ilya Kasnacheev > *Sent: *Friday, November 15, 2019 4:13 PM > *To: *user@ignite.apache.org > *Subject: *Re: Store objects as IBinaryobject in cadche > > > > Hello! > > > > You can use BinaryObjectBuilder: > > > https://

RE: Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Alexandr Shapkin
You can also refer to the BinaryModeExample.cs example and the docs [1] [1] - https://apacheignite-net.readme.io/docs/binary-mode#section-creating-binary-objects From: Ilya KasnacheevSent: Friday, November 15, 2019 4:13 PMTo: user@ignite.apache.orgSubject: Re: Store objects as IBinaryobject

Re: Store objects as IBinaryobject in cadche

2019-11-15 Thread Ilya Kasnacheev
Hello! You can use BinaryObjectBuilder: https://apacheignite.readme.io/docs/binary-marshaller#section-modifying-binary-objects-using-binaryobjectbuilder However, each variation of its composition is stored in schema cache, which means you should not have too many of those. It is recommended to

Store objects as IBinaryobject in cadche

2019-11-15 Thread Manan Joshi
I would like to store any time of object into cache as IBinaryobject, so i can store cache stored in loosely bind with object. I am working with Ignite .Net. Can someone please suggest something. I need something like MyObject obj = new MyObject(); obj.setFieldA("A"); obj.setFieldB(123);