Memcached is a simple object cache that can be used to improve the performance of dynamic web applications.

learn more… | top users | synonyms (1)

1
vote
1answer
39 views

How to sort a list of class instances

I'm operating with GAE and memcache. For my list of books I make a key and store it in memcache in order to avoid hit database everytime I must view the list. When I add a new item to database, I add ...
0
votes
2answers
17 views

Memcached as opposed to DB?

I have a web app that runs a cron job at midnight everyday and then uses that data to populate an HTML template for the next 24 hours. I do not care about preserving the historical values, just ...
0
votes
0answers
17 views

Ehcache simple search/transaction example?

I'm trying to test the capabilities of ehcache and I believe I have it set up properly in the cache initialization which I learnt from the code samples and elsewhere online. However I haven't added ...
0
votes
2answers
24 views

Memcache connect throws error in cron job

When i try to connect to memcached server from a php page, it works without any problem. Using this code $memcache = new Memcache; $memcache->connect('localhost', 11211) or die ("Could not ...
0
votes
2answers
32 views

GAE: how to add new data in a memcache var

I'm blocked right now. The problem is this: I have my "view" of a list of books stored in memcache. If I add a new book, I want to add the new book to the memcache variable that stores the list of ...
0
votes
1answer
77 views

Laravel 4: Caching JSON Response

I'm totaly new to Laravel, and i need to cache a JSON response every 60 min. Saw that Laravel offers lots of caching modules: File, Redis, Memcached, APC.. Which one wuold suite best for my need? I've ...
0
votes
0answers
10 views

Memcached - SERVER_ERROR out of memory storing object

i'm getting the error in Memcached every now and then. SERVER_ERROR out of memory storing object i still have plenty of memory available on my system (5GB). My Monitoring Plugin (Nagios) tells me ...
0
votes
2answers
25 views

ibmemcached Linking Error: undefined reference to `memcached_exist'

I am trying to write a sample code using libmemcached c/c++ client version (0.53) gcc -o test test.c -I/home/libmemcached/include -L/home/libmemcached/lib -lmemcached -lmemcachedutil However i get ...
0
votes
0answers
9 views

gevent not installed correctly on ubuntu 9

I have installed grequests along with that gevent also installed successfully But when tried to import grequests throws error >>> import grequests Traceback (most recent call last): File ...
0
votes
0answers
13 views

Caching parts of webpage using Memcached

I am trying to cache the code for my header which is: $cachedHeader = $this->cache->get('header'); if(!$cachedHeader) { include Vs . "header.php"; $header = file_get_contents(Vs . ...
0
votes
0answers
16 views

memcached session store breaks when hydrating namespaced objects

A rails app I am working on is using memcached & dalli for the session store. We've got a bunch of active models that are nested within modules for namespacing... something like: module A ...
0
votes
0answers
29 views

Reading PHP session from memcached

I'm storing PHP sessions in memcached. session.save_handler = memcached session.save_path = "web1.x:11211,web2.x:11211" That part works well. Problem starts when I try to read the session. This is ...
-1
votes
1answer
37 views

Real world uses of memcached for a website [closed]

I am trying to implement memcached into my website. I have an image gallery where images are rarely changed (deleted etc). They are kept in a database. now I know I could cache the result set ...
1
vote
1answer
86 views

The PHP runtime cannot be run with the “Memcache” PECL extension installed

I'm trying to run a sample php script on Google App Engine locally. On Installing the PHP SDK on Linux Google Developer Docs, I skipped installing PHP since I already have it on my Ubuntu system by ...
1
vote
0answers
22 views

Updating memcached entry

I am currently developing a system optimized for read. The architecture is a MySQL as the authoritative, persistent storage, and a memcache layer between the MySQL db and clients. Writes happen from ...
0
votes
0answers
4 views

heroku rails expire cache based on regexp

Let's say I have a story-telling site, where users can set parameters and get stories, e.g. mysite.com/story1?name=Frodo&race=hobbit returns Brave hobbit Frodo went to Mordor., ...
0
votes
1answer
13 views

dalli on heroku not caching

I want to enable action caching in my rails app on heroku. In development.rb I set: config.action_controller.perform_caching = true and see in logs Started GET "..." for 127.0.0.1 at 2013-05-17 ...
1
vote
1answer
15 views

jMeter hangs on scanner read

I am trying to test my memcached installation using jMeter (we are using jMeter for other functional tests, so using it for memcached seems like the best option). I am using the TelnetClient ...
0
votes
1answer
9 views

proper location of memcached custom seralizer jars

The memcached documentation instructs the base libraries go into $CATALINA_HOME/lib/ and that any custom serialization libraries go into WEB-APP/lib. We have many webapps running on the Tomcat (v7) ...
0
votes
1answer
16 views

Preserve session when clearing cache in memcached

I use memcached/dalli for caching purposes in Rails. I also use dalli_store as my session store. The problem is, when I clear view cache, users will be logged out of my system automatically. I think ...
0
votes
0answers
36 views

Strange memcache behaviour on GAE

I'm doing a simple CRUD system with memcache to make reads of tables faster, but I'm a bit confused with the behaviour. Basically, this is the important code: class Book(db.Model): title = ...
0
votes
0answers
19 views

Problems with memcached and ntpd on CentOS

We are having a problem with a virtual machine that's running our frontend website. Once it's running everything is fine, but after a reboot memcached is going bonkers. What happens is that we put ...
0
votes
0answers
20 views

Session Management between different application and servers

I have a Ruby on Rails app running on phusion passenger server which I want to enhance with a Java app running on Apache Tomcat. How do I manage sessions between these two applications? Or is there a ...
0
votes
0answers
21 views

Increasing maximum value size for memcached to store data for a complex search

After researching topics concerning increasing the maximum value size for memcached i found quite a few instances discouraging this in favor of other solutions like splitting the value. I would like ...
-2
votes
0answers
9 views

Where is the memcached protocol published? [closed]

I know that I can communicate with memcached using a CLI over telnet, and I know about libraries such as libmemcached that handle communication for you. I'd like to know something about the protocol ...
0
votes
0answers
12 views

Real time memcache update

I need to update memcache on real time. My database is MySQL. Currently I am using cron to do this. Time interval to run cron is 5 mins, due to server constraints I can not decrease its timing. One ...
2
votes
2answers
49 views

Memcached bug in PHP - binary protocol

I came across a bug using Memcached in PHP. Here's my piece of code: <?php $mc = new \Memcached(); $mc->setOption(\Memcached::OPT_BINARY_PROTOCOL, true); $mc->addServer("127.0.0.1", 11211); ...
0
votes
1answer
29 views

PHP and MySQLi check if in transaction

Is there any way to get if currently I'm inside of any transaction? For example: get if MySqli::autocommit is 'on' or 'off'? Need this because my project is using memcache, which should only be ...
0
votes
1answer
36 views

Improving the performance of Jquery Autocomplete with Sphinx / Memcache…or?

I have a list of 43,000 UK locations in an InnoDB table that I am using to populate a Jquery autocomplete box via remote json calls. At present I'm just performing a basic SELECT * FROM locations ...
0
votes
0answers
32 views

Asp.net mvc cache service update data logic

I am using asp.net mvc developing a simple project. I created a service interface named IProductService to get products. I created a real database service and a cache service. public interface ...
0
votes
0answers
12 views

Rails3 -> memcache -> observers/cacher.rb -> ? -> profit

I can't believe I'm forced to post a "how to cache Rails SQL hits" question, but there's way too much tangential verbiage on the interthing on this topic for me to just learn it by searching. Start ...
0
votes
2answers
26 views

Does a server need to be initialize for memcache

I have LAMP on my Mac Mountain Lion. My PHP was working fine. Then after restarting, it does not work until I run the following command in my terminal. Do I have to run it all the time after ...
0
votes
0answers
25 views

Distributed Lock of Temporary Data with Failover

I use .NET. I have data that's read and written frequently. However the temporary nature of the data is such that it doesn't make much sense to persist it. In fact it makes more sense to purge it ...
1
vote
0answers
24 views

How to tell Django, that memcached running with item-size larger than default?

Im using new setting to increase item size in memcached, but i cant store something larger than 1mb through Django backend. I know that memcache module require some setting to achieve thath, and ...
0
votes
1answer
41 views

Multiple theads access Memcache

What happen if multiple thread access the same object which stored in memcached ?? I have a object say ObjStore which stored in memcached. each thread retrieve the ObjStore from memcached and change ...
0
votes
0answers
21 views

jboss memcacehd kryo flex

I have a jboss 5.1 AS in which i m trying to implement session replication with memcached and kryo serialization . Everything is working fine , but i have a page in my application which has to its ...
2
votes
2answers
32 views

Create a dedicated memcache for all the deployments

I am trying to setup a cloud service of n dedicated roles acting as a dedicated cache (https://www.windowsazure.com/en-us/develop/net/how-to-guides/cache/#getting-started-cache-role-instance). I ...
-1
votes
2answers
34 views

PHP Caching on Client or Server?

I was reading about PHP Cache (APC, MemCache, etc), suddenly a question raised in my mind The Caching in PHP is Done at which level? Either it is done on Client side or Server side? Either on Hard ...
0
votes
0answers
16 views

How to get from amazon elastic cache with cli

I am using amazon elastic cache with autodiscovery. I want to using cli to get object from the cache. I tried with telnet to the cluster , but obviously this doesn't work because this is ...
-3
votes
0answers
46 views

Installing memcached (not memcache) on Windows / XAMPP? [closed]

I am trying to install memcached (note the D at the end) on Windows / XAMPP. I have been following the tutorial on HOW TO INSTALL MEMCACHED ON XAMPP ON WINDOWS 7 but in the end I understand that I ...
0
votes
1answer
28 views

Libevent use too much CPU

Recently I write a simple example using libevent, #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <sys/types.h> #include ...
0
votes
1answer
20 views

Is it possible to store a binary string to memcached and then get it back in application?

In my project i want to store a binary string (string like "010101010101") to memcached and then retrieve it back when needed, it seems that i can store the string successfully to memcached as "get ...
1
vote
1answer
27 views

Memcache key generation from the query

I am caching the select query and the values inside the memcache. I am only using simple single table queries. I tired using the query itself as a key , But really couldn't because of the special ...
1
vote
2answers
63 views

MySQL to refresh memcached

We have a web application running on LAMP stack, the application depends on various services. These services gets data from cache (memcached) which is being refreshed using cron (from MySQL). Cron ...
0
votes
0answers
9 views

What do to about Dalli::RingError

I am running a RubyOnRails Application that occassionalyl raises a Dalli::RingError. My assumption is that the memcached is polled to frequently at those times. These are only individual peaks and ...
-3
votes
0answers
20 views

Codeigniter + doctrine + memcached combination is good or not? [closed]

If i want to use memcached with Doctrine and CodeIgniter. Will this combination will be beneficial or somebody has some other better way or suggestions.
0
votes
0answers
27 views

how to fix “stale data access” in memcached

We are facing an issue with memcached (v1.4.4 on Redhat) that is accurately described below: With consistent ketama hashing in memcached, there is no strict state for where a given key lives. In the ...
0
votes
0answers
26 views

Connections maxed with memcache?

I'm using two memcache servers via php memcache->addServer and they always seem to have a max connection of ~110 no matter what I do and I'm wondering if it's creating a large bottleneck. The number ...
-1
votes
0answers
21 views

CacheMiddleware cache hit

I am using cron job to do run some tasks automatically. I always get"CacheMiddleware cache hit:" Debug. 2013-05-02 21:27:01.376 /interactive 200 13ms 2kb AppEngine-Google; ...
1
vote
0answers
36 views

How does Alternative PHP Cache apc_bin_dumpfile() and apc_bin_loadfile() exactly works?

Does apc_bin_dumpfile() dumps generates (and saves in filesystem) opcode/bytecode from php script? Does apc_bin_loadfile() somehow uses above mentioned code? I have script1.php function foo(){ ...

1 2 3 4 5 55