Questions tagged [memcached]

Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects). It is commonly used as a cache to speed access to frequently used data.

Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects). It is commonly used as a cache to speed access to frequently used data.

390 questions
0
votes
1 answer

How do I let memcached be accessed from another machine?

So I have been using memcached with a new django app and it works great, I can serve the dynamic version of the site slighly faster than if I mirror the files to a static sever. I have this setup on a vps and started memcached with the 'memcached -d…
wmbf86
  • 155
  • 1
  • 7
0
votes
1 answer

Need a little advice with apc, node.js, varnish, memcached, nginx

Just need a little advice here if anyone can help. Currently i have nginx running on a virtual private server, i am looking into installing node.js so i can use AjaxIM (http://ajaxim.com/) , and installing memcached, apc, and varnish. The main page…
mcbeav
  • 23
  • 8
0
votes
1 answer

is there any point running APC **and** memcached concurrently

Do APC and Memcached cache the same data? I understand that APC caches both files and objects/variables whereas memcached is object-only, but does memcached offer anything that APC doesn't? I've seen setups where both are used, but that seems to…
Jonathan Day
  • 204
  • 1
  • 2
  • 10
0
votes
4 answers

Is it possible to run multiple instances of the same application with a single memcached server?

I have two applications with exactly the same code using memcached in identical ways. Does memcached tell the difference between the two apps, and is it safe to run them on the same server with a single memcached server?
user66336
0
votes
1 answer

yum error when installing memcached

trying to install memcached with "yum install memcached" and i'm getting all these errors which I have no idea how to solve. Setting up Install Process Resolving Dependencies --> Running transaction check ---> Package memcached.x86_64…
Jack
  • 131
  • 1
  • 6
0
votes
1 answer

memcached and IIS manager with windows 2008

I have memcached (c:\memcached) running on port 11211 and I have a problem configuring IIS manager I created a site in IIS manager binded to port 11211 and if I have memcached running and try and start the site it says "the process cant access the…
user64484
  • 3
  • 2
0
votes
1 answer

Can't connect to Memcached

I know there are other questions on this but I can't find a resolution. I've installed Memcached on a server running Ubuntu and I'm trying to use it. I've attempted to start it using: $ memcached -d -p 11211 I cannot access it using the PHP client…
user34542
0
votes
1 answer

Can't get memcached / php memcache installed on CentOS 5.5

I cannot get memcached installed for the life of me on CentOS 5.5 yum install memcached says package doesn't exist I have tried installing from source, as well as yum. Apparently memcached is running according to ps auxw, and I have the extension…
Andrew Fashion
  • 1,655
  • 7
  • 22
  • 26
0
votes
1 answer

How can i install memcache for PHP 5.2.10 in CentOS 5.5? (not in repo)

i tried installing memcache from another repo and it all went wrong: [root@mail ~]# php -v PHP Warning: PHP Startup: memcache: Unable to initialize module Module compiled with module API=20050922, debug=0, thread-safety=0 PHP compiled with…
Andres SK
  • 238
  • 3
  • 7
  • 22
0
votes
2 answers

Memcached extension error in PHP

yesterday i migrated to Rackspace (CentOS 5.5). Everything was already configured (apache, php, mysql, memcached) and working well. The only thing i forgot, and installed at last was the mail server (iRedMail). After that, for some reason, memcached…
Andres SK
  • 238
  • 3
  • 7
  • 22
0
votes
1 answer

Memcached failing to get data (nuked by expire)

currently I have three different running memcached instances, each one for an environment (dev, test and live) All three environments are running the same memcached version (1.4.5) and configurations with slightly different Linux distros and…
victorcampos
  • 185
  • 1
  • 6
0
votes
2 answers

memcached and iptables

$m = new Memcached(); $m->addServer('localhost', 11211); Will port 11211 need to be open in IPTables for this to work, or is it bypassed considering it's localhost? sudo iptables -L -n -v output Chain INPUT (policy ACCEPT 0 packets, 0 bytes) pkts…
Ben
  • 3,800
  • 18
  • 65
  • 96
0
votes
1 answer

Jumping into memcached - know any good guides?

I'm looking to get into storing data in memcached and enhance a few areas of my site. I've googled around for guides in PHP and am finding limited or very old articles. There's always the documentation but I'd prefer to read from someone who's…
Ben
  • 3,800
  • 18
  • 65
  • 96
0
votes
1 answer

memcache connections reaching its limit...?

I recently launched my project and had around 2000+ users accessing the application within 10 minutes. I have setup memcache to handle the sessions. What happened was that the server went very slow, almost to an unbearable level. I closed down the…
Peter
  • 1
  • 1
0
votes
1 answer

Strategy for caching

I have a 5 dedicated servers each running the same version of an application. I'm looking to massively step up our caching strategy to take some load off MySQL as this is our main bottleneck. All the sites are LAMP and each server has approximately…
robjmills
  • 990
  • 9
  • 26