Re: Ignite Cassandra Integration Configuration for C#

2023-01-03 Thread Pavel Tupitsyn
Leave it as is. You can grab the settings file at https://github.com/apache/ignite/blob/231ead01d186c75ebb48f1d19e5a95fc9c459202/modules/cassandra/store/src/test/resources/org/apache/ignite/tests/persistence/primitive/persistence-settings-1.xml There is nothing C# specific at all in this example,

Re: Ignite Cassandra Integration Configuration for C#

2023-01-03 Thread Charlin S
Hi Pavel, Thanks for updating, how does the support below xml config works in C#, or do I need to skip this part for cassandra persistence storage implementation in c#. Regards, Charlin On Tue, 3 Jan 2023 at 21:07, Pavel Tupitsyn wrote: > Hi Charlin, happy new year! > > Those examples

Re: Ignite Cassandra Integration Configuration for C#

2023-01-03 Thread Pavel Tupitsyn
Hi Charlin, happy new year! Those examples are mostly XML configs, you can use them as is in C#, something like: var cfg = new IgniteConfiguration { SpringConfigUrl = "ignite-cassandra.xml" }; Ignition.Start(cfg); Let me know if you need more details. Pavel On Tue, Jan 3, 2023 at 1:50 PM

Ignite Cassandra Integration Configuration for C#

2023-01-03 Thread Charlin S
Hi All, Happy new year to all ! https://ignite.apache.org/docs/latest/extensions-and-integrations/cassandra/usage-examples As per documentation, we see examples for support of data types in Java. we have not seen support for dotnet data types. Could you please advise on this for C#