enyim.caching

Remove signing from an assembly

∥☆過路亽.° 提交于 2019-12-18 16:12:10
问题 I have a project open in Visual Studio (it happens to be Enyim.Caching). This assembly wants to be delay-signed. In fact, it desires so strongly to be delay-signed, that I am unable to force Visual studio to compile it without delay signing. I have unchecked "Delay sign only" and "Sign the assembly" on the Visual Studio project properties box, and rebuilt. The assembly is still marked for delay sign (as shown by sn.exe -v ). I have unloaded the project and verified that the signing is set to

Unable to get Enyim.Caching MemcachedClient to work with Couchbase

不问归期 提交于 2019-12-11 19:27:51
问题 I realize that Couchbase provides a client to their memcached server, but I'm trying to get the enyim.caching client to work. Here's my trivial c# code that uses the Couchbase client (which works) and then pretty much the same thing with the enyim MemcachedClient: class Program { static void Main(string[] args) { var client = new CouchbaseClient(); client.Store(StoreMode.Set, "somekey", "somevalue"); var somevalue = client.Get<string>("somekey"); Console.WriteLine(somevalue); Console.ReadLine

NHibernate MemCached w/ Protobuf-net.Enyim — does it actually work?

谁说我不能喝 提交于 2019-12-11 04:09:11
问题 I've used the following assemblies to hook up NHibernate 2nd-level caching with Enyim Memcached using Protobuf-net binary serializer: NHibernate NHibernate.Caches.EnyimMemcached Enyim.Caching protobuf-net protobuf-net.Enyim It's recently come to my attention that despite hooking up protobuf-net with EnyimMemcached, I'm likely not actually using that serializer as all my entities were marked with just [Serializable] and neither [DataContract] or [ProtoContract] with corresponding ordered Data

protobuf-net transcoder for EnyimMemcached problems

烈酒焚心 提交于 2019-12-01 08:09:12
Is the transcoder from protobuf-net to enyim cache deprecated? distributed caching with protobuff-net Setting my Enyim config just like this app.config causes an error when I try to start the MemcachedClient() The same for using transcoder type="ProtoBuf.Caching.Enyim.NetTranscoder"/ System.TypeInitializationException was unhandled by user code HResult=-2146233036 Message=The type initializer for 'Enyim.Caching.MemcachedClient' threw an exception. Source=Enyim.Caching TypeName=Enyim.Caching.MemcachedClient StackTrace: at Enyim.Caching.MemcachedClient..ctor() at Global.asax.cs:line 31

protobuf-net transcoder for EnyimMemcached problems

三世轮回 提交于 2019-12-01 07:07:33
问题 Is the transcoder from protobuf-net to enyim cache deprecated? distributed caching with protobuff-net Setting my Enyim config just like this app.config causes an error when I try to start the MemcachedClient() The same for using transcoder type="ProtoBuf.Caching.Enyim.NetTranscoder"/ System.TypeInitializationException was unhandled by user code HResult=-2146233036 Message=The type initializer for 'Enyim.Caching.MemcachedClient' threw an exception. Source=Enyim.Caching TypeName=Enyim.Caching

Remove signing from an assembly

自闭症网瘾萝莉.ら 提交于 2019-11-30 13:53:37
I have a project open in Visual Studio (it happens to be Enyim.Caching). This assembly wants to be delay-signed. In fact, it desires so strongly to be delay-signed, that I am unable to force Visual studio to compile it without delay signing. I have unchecked "Delay sign only" and "Sign the assembly" on the Visual Studio project properties box, and rebuilt. The assembly is still marked for delay sign (as shown by sn.exe -v ). I have unloaded the project and verified that the signing is set to false. When reloading the project, the check boxes for "Sign" and "Delay Sign" are checked. I have