You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
following up on #91:
I'm trying to use JsonCacheSerializer and the DistributedCache options (currently MemoryDistributedCache).
Looking at the code of CoreDistributedCache.Put I see, that it tries to cache a Tuple<object, object> of the key and the value. The key is a CacheKey.
The JsonCacheSerializer fails, because it does not know tuples nor CacheKeys (nor QueryKeys).
I wonder how this is supposed to work - am I missing something?
Here is an exception + stacktrace after I ran RegisterType(typeof(Tuple<object, object>), "tuoo") to register the tuple. I can also register the CacheKey, but it will fail when deserializing, obviously needing more work than just registering the type.
InvalidOperationException: Unknown type 'NHibernate.Cache.CacheKey, NHibernate, Version=5.2.0.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4', use JsonCacheSerializer.RegisterType method to register it.
Hi,
following up on #91:
I'm trying to use JsonCacheSerializer and the DistributedCache options (currently
MemoryDistributedCache
).Looking at the code of
CoreDistributedCache.Put
I see, that it tries to cache aTuple<object, object>
of the key and the value. The key is aCacheKey
.The JsonCacheSerializer fails, because it does not know tuples nor CacheKeys (nor QueryKeys).
I wonder how this is supposed to work - am I missing something?
Here is an exception + stacktrace after I ran
RegisterType(typeof(Tuple<object, object>), "tuoo")
to register the tuple. I can also register the CacheKey, but it will fail when deserializing, obviously needing more work than just registering the type.The text was updated successfully, but these errors were encountered: