Example #1
0
        public static KVStore Create(string name = "local")
        {
            NativeMethods.MXKVStoreCreate(name, out var handle);
            var kv = new KVStore(handle);

            Profiler.profiler_kvstore_handle = handle;
            return(kv);
        }
 public KVStoreServer(KVStore kvstore)
 {
     this.kvstore = kvstore;
     handle       = kvstore.handle;
     init_logging = false;
 }