Yes, you can create a cache template in two ways:
* At startup: add IgniteConfiguration.CacheConfiguration where Name has an
asterisk in it, like 'cache-foo-*'
* After startup: Ignite.AddCacheConfiguration, same thing with `*` in the
Name

After that, when you call CreateCache<TK, TV>(string name), and the name
matches the template name,
settings from the template are applied:

ignite.CreateCache<int, string>("cache-foo-1")


On Sat, Jan 18, 2020 at 8:27 AM siva <[email protected]> wrote:

> Hi,
>
> Thanks for reply.It's working fine now after added cache configuration and
> factory classes.
>
> so Is there any way like cache creation time create template and later for
> all other client can access same temple for the crossponding cache
> configuration?
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Reply via email to