Questions tagged [enyim]

47 questions
0
votes
1 answer

Memcache (northscale) socket pool question for Enyim

I'm using Northscale 1.0.0 and need a little help getting it to limp along for long enough to upgrade to the new version. I'm using C# and ASP.NET to work with it using the Enyim libraries. I currently suspect that the application does not have…
Will Gant
  • 31
  • 3
0
votes
2 answers

Enyim Serialization Error Linq

I'm using Devart to execute DB object and Store Procedure mapping. Now i want to store in cache (using Enyim by MemCached) a Store Procedure object result. When i'm trying to do that i have this kind of error (in short: type Devart.Data.Linq.a in…
Luigi Saggese
  • 5,299
  • 3
  • 43
  • 94
0
votes
1 answer

Enyim Performance issue

I'm using enyim to provide access to a membase server for a multi-threaded queue readers. These readers access an AQMP queue, check the cache to see if the item has already been processed and if not inserts it into the database and into the cache. …
randomperson25
  • 175
  • 2
  • 4
  • 16
0
votes
0 answers

How to manage cache invalidation with mysql master-slave architecture with delay in syncing data from master to the slave?

We want to get seller-contact of some registered seller on our website. We have memcached implemented. So, we first check if cache key exist for this object, we return the cached object, otherwise, we read data from database. In database, we write…
Sahil Sharma
  • 3,847
  • 6
  • 48
  • 98
0
votes
1 answer

Java Xmemcached or Spymemcached client unable to get the key value which is set by C# Enyim client

Java Xmemcached or Spymemcached client are unable to get the correct value from memcached by key which is set by C# Enyim client. We have already tried set C# MemcachedProtocol.Binary to Text to store basic String format data, but both Java…
Jason Wu
  • 1
  • 1
0
votes
1 answer

How to use Enyim's Memcached Client with the Append method?

The value that I'm trying to append to is a string. I've been able to convert the string to a byte array using Encoding.ASCII.GetBytes(value) and passing that to the IMemcachedClient: Appending to Memcached (seems fine) var value = "Some string…
BlackjacketMack
  • 5,472
  • 28
  • 32
0
votes
3 answers

How to memcache or store key value pair when key is in range and not a single value?

We have a table in our database that has static ip range of cities and their ip address. It looks something like: IP-TO, IP-FROM, CITY 100, 110, A 111, 168, B ... 965, 1000, Z I have mentioned…
Sahil Sharma
  • 3,847
  • 6
  • 48
  • 98
0
votes
1 answer

How to Load Related Entities after retrieving item from Memcache

I'm storing an object into Memcached using Enyim. However, when pulling this object out of Memcached the related entities are null. Using System.Runtime.Caching the entities load perfectly fine. Any help or hints to store these related entities…
FAtBalloon
  • 4,500
  • 1
  • 25
  • 33
0
votes
1 answer

Configuration amazon Memcached with Enyim.Caching

The method always returns false, and I do not know where the problem is: var myObj = new MyObj("Key01","My Value "); bool isInserted = memCache.Store(Enyim.Caching.Memcached.StoreMode.Add, myObj.Id, myObj.name , new TimeSpan(0, 10, 0)); My…
0
votes
1 answer

increment in memcache enyim cilient

I'm trying to figure out some basic operations in memcache. I performed incr command on the telnet over memcache client node & it works fine. Now I'm trying the same in my C# code through enyim memcache client but i'm facing problem in this…
0
votes
1 answer

Simple Couchbase with C# client setup failing

I'm trying to set up a simple sample Couchbase setup, communicating over the C# client, but it's giving me fits. I've installed Couchbase and added a memcached bucket. Here is my simple code for communicating with it: public static void…
Jim
  • 4,509
  • 16
  • 50
  • 80
0
votes
0 answers

Memcached Stops working after multiple requests

I have implemented Enyim.caching memcached client for my website on a remote server for Session management. It works fine for 2-3 users but when we increase load to 20+ users, memcached server on remote machine stops working. I am not getting any…
0
votes
1 answer

Unable to get stored memcached client value

Unable to get stored memcached client value this does not retrive the value of TEST , what is the wrong in this code? Console.Out.WriteLine("START:"); var cfg = new MemcachedClientConfiguration(); …
Fazal Mohamed
  • 121
  • 1
  • 7
  • 15
0
votes
1 answer

Unable to get Enyim.Caching MemcachedClient to work with Couchbase

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…
Tad Donaghe
  • 6,625
  • 1
  • 29
  • 64
0
votes
0 answers

Couchbase .Net SDK error when app is deployed to test environment

I have written a ASP.NET MVC application that makes primitice use of couchbase 1.8. The application works when I run it in my dev environment but when I deploy it into my test environment then I get the following…
Dunc
  • 7,688
  • 10
  • 31
  • 38