Memcached is a simple object cache that can be used to improve the performance of dynamic web applications.
54
votes
10answers
21k views
Memcached with Windows and .NET
Is there anyone already implement memcached for production use in Windows environment?
Because many blogs that I've read, it's not recommended to run memcached in Windows especially for production ...
42
votes
13answers
15k views
Memcached on Windows (x64)
Does anyone know IF, WHEN or HOW I can get Memcached running on a Windows 64bit environment?
I'm setting up a new hosting solution and would much prefer to run a 64bit OS, and since it's an ASP.Net ...
40
votes
2answers
5k views
NoSQL (MongoDB) vs Lucene (or Solr) as your database
With the NoSQL movement growing based on document-based databases, I've looked at MongoDB lately. I have noticed a striking similarity with how to treat items as "Documents", just like Lucene does ...
38
votes
5answers
16k views
Is memcached a dinosaur in comparison to Redis?
I have worked quite a bit with memcached the last weeks and just found out about Redis. When I read this part of their readme, I suddenly got a warm, cozy feeling in my stomach:
Redis can be used ...
38
votes
3answers
17k views
Memcached vs APC which one should I choose?
I ready this article: http://www.mysqlperformanceblog.com/2006/09/27/apc-or-memcached/ from way back when.. I want to get the best cacheing engine available so that my application is really fast. Of ...
31
votes
2answers
20k views
Using Memcache vs Memcached with PHP
It seems that PHP has two memcached libraries named memcache and memcached. What is the difference and how do you know which one to use? Is one outdated? It seems that memcached offers more methods so ...
31
votes
1answer
15k views
Good examples of python-memcache (memcached) being used in Python?
I'm writing a web app using Python and the web.py framework, and I need to use memcached throughout.
I've been searching the internet trying to find some good documentation on the python-memcached ...
28
votes
3answers
6k views
MS Velocity vs Memcached for Windows?
I've been paying some attention to Microsoft's fairly recent promoting of Velocity as a distributed caching solution that would compete with the likes of Memcached.
I've been looking for a 64bit ...
26
votes
4answers
7k views
Which .NET Memcached client do you use, EnyimMemcached vs. BeITMemcached?
Seems like both EnyimMemcached (http://memcached.enyim.com/) and BeITMemcached (http://code.google.com/p/beitmemcached/) are popular .NET Memcached libraries. Both are reasonably active projects under ...
26
votes
4answers
9k views
System.Web.Caching vs. Enterprise Library Caching Block
For a .NET component that will be used in both web applications and rich client applications, there seem to be two obvious options for caching: System.Web.Caching or the Ent. Lib. Caching Block.
...
22
votes
7answers
12k views
19
votes
2answers
4k views
Memcache(d) vs. Varnish for speeding up 3 tier web architecture
I'm trying to speed up my benchmark (3 tier web architecture), and I have some general questions related to Memcache(d) and Varnish.
What is the difference?
It seems to me that Varnish is behind the ...
17
votes
10answers
5k views
alternative to memcached that can persist to disk
I am currently using memcached with my java app, and overall it's working great.
The features of memcached that are most important to me are:
it's fast, since reads and writes are in-memory and ...
15
votes
4answers
3k views
How can I have Google App Engine clear memcache every time a site is deployed?
The title asks it all. The content on the site I'm building wont change very quickly at all and so Memcache could potentially store data for months except for when I put up an update. Is there a way ...
14
votes
4answers
3k views
Redis and Memcache or just Redis?
I'm using memcached for some caching in my Rails 3 app through the simple Rails.cache interface and now I'd like to do some background job processing with redis and resque.
I think they're different ...
14
votes
1answer
2k views
How much memory of Memcache is available to a Google App Engine account?
Google App Engine has some information about Memcache limits:
http://code.google.com/appengine/docs/quotas.html#Memcache
...
14
votes
4answers
6k views
What's the best serialization method for objects in memcached?
My Python application currently uses the python-memcached API to set and get objects in memcached. This API uses Python's native pickle module to serialize and de-serialize Python objects. This API ...
14
votes
8answers
5k views
How to call expire_fragment from Rails Observer/Model?
I've pretty much tried everything, but it seems impossible to use
expire_fragment from models? I know you're not supposed to and it's
non-MVC, but surely there much be some way to do it.
I ...
13
votes
3answers
1k views
What is the best way to do AppEngine Model Memcaching?
Currently my application caches models in memcache like this:
memcache.set("somekey", aModel)
But Nicks' post at http://blog.notdot.net/2009/9/Efficient-model-memcaching suggests that first ...
13
votes
2answers
433 views
Memcached rubygem + Rlibmemcached argument error with memcache_mget()
I am getting an exception when using Evan Weaver's Memcached gem (as Memcached::Rails.new) -> (http://github.com/fauna/memcached) and calling get_multi()
ArgumentError: wrong # of arguments(2 for 4)
...
12
votes
5answers
412 views
Is the ruby operator ||= intelligent?
I have a question regarding the ||= statement in ruby and this is of particular interest to me as I'm using it to write to memcache. What I'm wondering is, does ||= check the receiver first to see if ...
12
votes
6answers
6k views
Is there a port of memcache to .Net?
I am interested if there is a port for the server implementation.
11
votes
6answers
17k views
php_memcache.dll for PHP 5.3
I recently setup a server using the latest version of XAMPP for Windows. With it came PHP 5.3. I'm now looking for a memcache.dll file that works with PHP 5.3 I've used some of the previous .dll ...
10
votes
3answers
2k views
Is recommended Memcache when using mongoDB as database?
I would like to know if you recommend Memcache when using a NoSQL database like mongoDB.
10
votes
5answers
1k views
Whats the best way to manage keys (in memcache ) to prevent stale cached values?
Ive recently implemented memcache on my site which has been under heavy mysql load (mysql was as optimized as I could make it). It solved all my load issues, and site is running beautifully.
The ...
10
votes
3answers
9k views
Memcache Vs. Memcached
Someone can explain me the difference from Memcache and Memcached in PHP environment?
What are the advantages of one over the other?
Can you also suggest that the criteria used to choose between one ...
10
votes
4answers
1k views
What would you recommend for a large-scale Java data grid technology: Terracotta, GigaSpaces, Coherence, etc?
I've been reading up on so-called "data grid" solutions for the Java platform including Terracotta, GigaSpaces and Coherence. I was wondering if anyone has real-world experience working any of these ...
10
votes
3answers
3k views
How to effectively implement sessions in GAE?
I was wondering about implementing my own sessions (more for an exercise than anything else) for a GAE app I'm working ... at first I was thinking of using the datastore to store the session data. ...
9
votes
2answers
1k views
cache_money for Rails 3
I've used various forks (mostly the ngmoco fork) of Nick Kallen's excellent cache_money for several Rails 2.3 based project, but we're now making the leap to Rails 3 which, thanks to the introduction ...
9
votes
2answers
7k views
PHP memcached Fatal error: Class 'Memcache' not found
I've pasted the example from php.net for using memcached in php and I'm getting:
Fatal error: Class 'Memcache' not found
I have this in my php.ini:
[memcache]
memcache.hash_strategy = ...
9
votes
2answers
3k views
memcache and wildcards
I'm just wondering if there is a way to clear memcache using wildcards for key values.
So say I have a cache with the key "1234~foo" and another "1234~foo~bar".
Is there any way I can say clear the ...
9
votes
5answers
3k views
Memcache-based message queue for App Engine?
I'm working on a multiplayer game on App Engine and it needs a message queue (i.e., messages in, messages out, no duplicates or deleted messages assuming there are no unexpected cache evictions). Here ...
9
votes
3answers
6k views
Rails Caching DB Queries and Best Practices
The DB load on my site is getting really high so it is time for me to cache common queries that are being called 1000s of times an hour where the results are not changing.
So for instance on my city ...
8
votes
1answer
3k views
Comparison of memcache, redis and ehcache as distributed caching framework
One of the decisions I need to make is what caching framework to use in my system. With so many to choose from, I am currently investigating redis, ehcache and memcached.
Can anyone point to ...
8
votes
1answer
1k views
How to clear the entire second level cache in NHibernate
I wish to clear the entire second level cache in NHibernate via code. Is there a way to do this which is independent of the cache provider being used? (we have customers using both memcache and ...
8
votes
3answers
5k views
How to use memcached from codeigniter
How to use memcached from codeigniter, and how to store session data to memcached.
Please help me.
Thanks
8
votes
3answers
828 views
What is compression for in PHP's Memcache?
On PHP.net I am looking at the Memcache::set function and it has this optional flag to use compression...
Use MEMCACHE_COMPRESSED to store the
item compressed (uses zlib).
...
8
votes
3answers
3k views
Google App Engine: Memcache or Static variable?
Well, I think I have a very basic doubt here:
I'm developing an app on GAE (Java) and performing a query to the datastore that returns a lot
of entities, so I need to cache it. I was using memcache ...
8
votes
3answers
324 views
What if I want to store a None value in the memcache?
This is specifically related to the Google App Engine Memcache API, but I'm sure it also applies to other Memcache tools.
The dictionary .get() method allows you to specify a default value, such as ...
8
votes
5answers
7k views
Can I install the memcached PHP extension with PECL?
I'm having trouble installing the "memcached" PHP extension from PECL, though I can successfully installed the "memcache" extension. (They are separate PHP extensions.)
For example, these commands ...
8
votes
4answers
3k views
Design pattern for memcached data caching
It's easy to wrap optional memcached caching around your existing database queries. For example:
Old (DB-only):
function getX
x = get from db
return x
end
New (DB with memcache):
...
8
votes
4answers
3k views
What is the best way to handle sessions for a PHP site on multiple hosts?
PHP stores its session information on the file system of the host of the server establishing that session. In a multiple-host PHP environment, where load is unintelligently distributed amongst each ...
7
votes
4answers
303 views
Is it good to have Memcache, APC and Varnish on LAMP servers
I have 3 web servers I need to optimize. I currently have just a little over 2000 unique visitors a day and I want to improve performances on my servers to make sure when I will get more traffic ...
7
votes
2answers
840 views
Is Memcache (Java) for Google App Engine a global cache?
I'm new to Google App Engine, and I've spent the last few days building an app using GAE's Memcache to store data. Based on my initial findings, it appears as though GAE's Memcache is NOT global?
...
7
votes
2answers
1k views
Should we use php5-memcache or php5-memcached when connect with memcached server?
In php, there are 2 modules that can be used when programming with memcached.
Memcache and Memcached
In the document, it said that php5-memcached using libmemcached to connect memcached. And there ...
7
votes
2answers
487 views
What's a good Flask/Python/WSGI analog to the PHP Apache shared memory stores like apc_store/apc_fetch?
I've done a couple of years of large-scale game server development in PHP. A load balancer delegates incoming requests to one server in a cluster. In the name of better performance, we began caching ...
7
votes
2answers
1k views
Enyim Memcached Client does not write / read data
I've installed memcached on Windows as a service, listening on the default port 11211. I know this works, because I can telnet to the server and carry out get / set commands without any problems.
...
7
votes
4answers
228 views
Data object storage - Can table JOIN's do what single table SELECT's cannot?
Now that "NOSQL" or "object only" storage systems like MongoDB or memcached are really picking up steam in the world. I was wondering if there are any requests that cannot be performed on them that ...
7
votes
4answers
136 views
Database design advice needed
I'm a lone developer for a telecoms company, and am after some database design advice from anyone with a bit of time to answer.
I am inserting into one table ~2 million rows each day, these tables ...
7
votes
5answers
3k views
Memcache vs APC for a single server site data caching
I have a single server site thats pushing 200k unqiues per day, and the traffic doubles roughly every 40 days (for the last 5 months anyway).
I pretty much only plan to cache the output of ...