Questions tagged [enyim]
47 questions
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
1
vote
2 answers
Can't store object into membased, how can I know why?
I'm trying to store an object into Cache like:
Dictionary cacheSubscribers =
client.Get>("ListAllSubscribers");
if (cacheSubscribers == null)
{
cacheSubscribers = db.JK_Subscribers
…

balexandre
- 73,608
- 45
- 233
- 342
1
vote
2 answers
NullReferenceException while get Data from Memcached (.NET)
Have problem while getting data from Memcached on .NET MVC solution.
I have this custom repository:
public List GetLocalization(string key, string lang)
{
var result =…

Evgeniy Labunskiy
- 2,012
- 3
- 27
- 45
1
vote
1 answer
Membase Node.IsAlive = False?
We have 2 web servers and 1 app server in our QA environment. Each of
them hosts a Membase service.
For simplicity let's call the web servers: web01 and web02. Both
running IIS.
To access Membase we use the .Net client:…

Lancelot
- 2,417
- 12
- 39
- 46
1
vote
1 answer
Need help on versioning/migrating data
I'm working on a project where I'll be using Membase (think Memcached + persistence) as our persistence layer with a multi-node cluster.
We're using the Enyim client to talk to the cache and we're using binary serialization to serialize/deserialize…

theburningmonk
- 15,701
- 14
- 61
- 104
1
vote
1 answer
Memcached object deserialization
If an object serialized using ruby and pushed into memcache can it be deserialized using another language like C# (using memcache client)?

Sandeep Raikar
- 491
- 1
- 6
- 13
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
1 answer
Enyim Memcached client - issues when using MemcachedSessionProvider
We've had issues using Memcached as the session provider for an MVC .NET application.
The problem is that objects are going in to session, but then are being expired immediately, so we are unable to retrieve them.
The config we are using is as…

soupy1976
- 2,787
- 2
- 26
- 34
1
vote
1 answer
Using protobuf-net, what is the correct way to serialize a derived type that implements an interface?
I realize that there are similar questions here, but none that asks this quite as straightforwardly as what I need, probably because of my lack of protobuf experience. I am transcoding for enyim's caching client, and having trouble figuring out how…

downwitch
- 1,362
- 3
- 19
- 40
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
1
vote
2 answers
Can't resolve dependency of Enyim.Caching
I have a problem with resolving dependency to Enyim.Caching.dll while using Couchbase client. I have downloaded the dlls via NuGet and referenced them in the project. The solution compiles fine with the downloaded assembly Enyim.Caching,…

Sergei
- 1,617
- 15
- 31
1
vote
1 answer
can't get result when use expiry on Enyim.Caching(version 2.11.0.0)
var config = new MemcachedClientConfiguration();
config.Protocol = MemcachedProtocol.Binary;
config.AddServer(server[0],int.Parse(server[1]));
var mc = new MemcachedClient(config);
var finish = mc.Store(StoreMode.Set, key,…

sjbwylbs
- 151
- 14
1
vote
1 answer
How can I specify Memcached options to compress the cached data with C#.Net?
I have ASP.Net project and I'm using Memcached for data and session caching. I also need to use the compress options of Memcached. I'd appreciate that if you can share your comments with me! I have found some sites but they don't have any c#.Net…

Nurhak Kaya
- 1,470
- 1
- 18
- 20
1
vote
2 answers
Enyim.Caching.Memcached - Failed to read from Socket
I'm currently building an environment for deploying a web.application.
The Web.Application uses Enyim.Caching.
There looks to be an issues with the sockets
I'm unfamiliar with membase server, if there is any additional information that I can include…

user617850
- 35
- 1
- 8
1
vote
1 answer
Setup EnyimMemcached to work with Couchbase Server
I'm trying, without luck at all, to make the EnyimMemcached library work with Couchbase Community server that I have installed on my local machine.
I'm using in web.config

balexandre
- 73,608
- 45
- 233
- 342