Re: Replicated cache in C++

2022-06-23 Thread F.D.
Ok thanks very much. Il mer 22 giu 2022, 02:54 Ilya Korol ha scritto: > Hi, > > Asterisk (*) in cache name is just a flag for Ignite to not initiate > this cache but instead register it as a template, that for example can > be used further for SQL table creations: > > CREATE TABLE IF NOT EXISTS

RE: Replicated cache in C++

2022-06-21 Thread Ilya Korol
Hi, Asterisk (*) in cache name is just a flag for Ignite to not initiate this cache but instead register it as a template, that for example can be used further for SQL table creations: CREATE TABLE IF NOT EXISTS Person (   id int,   city_id int,   name varchar,   age int,   company varchar,