Questions tagged [enyim.caching]
24 questions
8
votes
2 answers
Remove signing from an assembly
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…

theMayer
- 15,456
- 7
- 58
- 90
3
votes
1 answer
NHibernate.Caches.EnyimMemcached, protobuf-net.Enyim want conflicting versions of Enyim.Caching
I'm trying to wire up NHibernate to use the Enyim.Memcached provider for its second-level caching. Additionally, I want Enyim.Memcached to use the protobuf-net as its serializer.
Looking at nuget and the web, I can find pretty much all the pieces I…

kdawg
- 2,019
- 21
- 31
3
votes
1 answer
protobuf-net transcoder for EnyimMemcached problems
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…

Tadeu Maia
- 1,194
- 9
- 20
2
votes
0 answers
Append bunch of items into collection stored in Memcached
It's possible to store a list of items in Memcached but in my case I need to have an ability to append data to the existing collection that is already stored in Memcached.
Since collection is too large (>10 Gb) the way to retrieve/append and then…

mykhailovskyi
- 680
- 1
- 8
- 19
2
votes
0 answers
Enyime Couchbase - flushing memcached bucket
I'm trying to flush a memcached bucket in Couchbase using the Enyim client library.
using (var client = new MemcachedClient())
{
client.FlushAll();
}
This doesn't work as…

obaylis
- 2,904
- 4
- 39
- 66
2
votes
1 answer
How can I Increment a memcached value with .NET enyim?
The internet seems to be fairly void of information or documentation about the Enyim Increment method. I cant quite figure out what it is doing. The documentation states:
Increment(string key, ulong defaultValue, ulong delta);
"Increments the…

tezromania
- 797
- 1
- 5
- 18
2
votes
1 answer
NHibernate MemCached w/ Protobuf-net.Enyim -- does it actually work?
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…

kdawg
- 2,019
- 21
- 31
1
vote
1 answer
AWS C# lambda using Memcached (EnyimMemcached), store always fails
In AWS I have setup a small memcached node in my VPC in a private subnet. My lambda is in the same VPC and private subnet.
My lambda runs the EnyimMemcached code without exceptions.
When I look in CloudWatch there is connections to my memcache node…

JDcode
- 57
- 1
- 5
1
vote
1 answer
Memcache - Cached Data is always null
Below is my try to use Memcache in a console application.
App.Config

Kgn-web
- 7,047
- 24
- 95
- 161
1
vote
1 answer
How to raise the minimum log level for specific libraries with NLog?
I'm using ServiceStack with Enyim.Memcached and NLog. My NLog configuration looks like this:

Graham Clark
- 12,886
- 8
- 50
- 82
1
vote
1 answer
CouchbaseClient.StoreJson does not store the Id property
The 3rd assert fails. Is it a CouchbaseClient bug?
private class StoreJsonTest
{
public int Id { get; set; }
public string StrProp { get; set; }
public int IntProp { get; set; }
}
[Test]
public void…

Александр Шмыков
- 27
- 6
1
vote
0 answers
Storing List in Couchbase/Memcached in addition to each T?
I'm using Couchbase/Memcached to pre-compute a bunch of search results and keep them in memory to serve to clients, instead of them doing the searches themselves.
A set of search results is a List. If however a customer clicks into a given search…

plenderj
- 563
- 4
- 15
1
vote
2 answers
How to use enyim memcached client with amazon elasticache in c#
I have created a cache cluster on Amazon ElastiCache. It has given me an endpoint address.
Now I want to store the data in Amazon ElastiCache. For that I am making use of enyim memcached client.
The server gives an error as;
Type initializer for…

VJOY
- 3,752
- 12
- 57
- 90
1
vote
0 answers
Enyim Memcached client getting cluster cached item count
Is it possible to do this? I think using the GetValue method off of stats I can request curr_items but that would be from a single server.
Does anyone know of a way through Enyim's memcached client in .NET to retrieve the count of items currently in…

Jimmy Hoffa
- 5,909
- 30
- 53
1
vote
1 answer
How to distribute cache using memchached approach between multiple servers?
I'm trying to distribute cache across multiple servers. I have installed Memcached on 2 Linux servers. I'm using .Net Client Libraries to manipulate cache on those servers.
It's always store value on the first server from configuration. I tried to…

Eugene
- 1,037
- 2
- 12
- 19