Memcached2 icon indicating copy to clipboard operation
Memcached2 copied to clipboard

Doesn't support complex objects?

Open scascalesageinfoes opened this issue 4 years ago • 1 comments

Hello

Doesn't support complex objects? c is missing in var dictionary ` public class testclass { public string a = "a"; public string b = "a"; }

MemcachedClient mc = MemCached.getInstance(); bool _inserted = mc..Store(StoreMode.Set, "dictionary", new Dictionary<string, object>() { { "a", "1" }, { "b", 1}, { "c", new testclass { a ="111", b="ccc" } } }); var dictionary = mc.Get("dictionary") as Dictionary<string, object>;`

Thx

scascalesageinfoes avatar Jul 06 '20 15:07 scascalesageinfoes

@scascalesageinfoes did you got the solution ?

HemachandranPM avatar Jun 16 '21 07:06 HemachandranPM