Thank you so much for help .
After running by exe and passing arguments  it is working in .Net server.

But Function is working after creating at least on one table with cache
template of function.is this should work like that?

I am not sure but
If you don't mind just for clarification Actually i want  apply that custom
function cache template in all caches using code.How to apply same function
cache template on this below cache config?

          

            var cacheCfg = new CacheConfiguration("MyTemplate*")
                {
                    Name = "MyTemplate",
                    CacheStoreFactory = new
ConstructionTenantCacheStoreFactory(_logger, connectionString),
                    KeepBinaryInStore = false,  // Cache store works with
deserialized data.
                    ReadThrough = true,
                    WriteThrough = true,
                    WriteBehindEnabled = true,
                    QueryEntities = queryList,
                    WriteBehindFlushThreadCount = 2,
                    CacheMode = CacheMode.Partitioned,
                    Backups = backupNodes,
                    DataRegionName = "IgniteDataRegion",
                    EvictionPolicy = new LruEvictionPolicy
                    {
                        MaxSize = 100000
                    },
                    EnableStatistics = cacheMetrics,
                    WriteSynchronizationMode =
CacheWriteSynchronizationMode.FullSync,
                    GroupName=groupName
                };

            var cache = Ignite.GetOrCreateCache<string,object>(cacheCfg);

Thanks.



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to