Questions tagged [libmemcached]

libMemcached is an open source C/C++ client library and tools for the memcached server.

110 questions
76
votes
10 answers

Error when install pylibmc using pip

Hello when I attempt to install pylibmc on OSX Lion using pip I get the following error: ./_pylibmcmodule.h:42:10: fatal error: 'libmemcached/memcached.h' file not found #include ^ 1 error generated. error:…
harristrader
  • 1,181
  • 2
  • 13
  • 20
40
votes
3 answers

Installing pylibmc on Ubuntu

When running pip install pylibmc on Ubuntu, I get the following error: _pylibmcmodule.h:42:36: fatal error: libmemcached/memcached.h: No such file or directory
Zags
  • 37,389
  • 14
  • 105
  • 140
15
votes
4 answers

Memcached on Heroku w/ Django : can't install pylibmc / memcacheify

I've spent a lot of time on this and it's clearly beyond my newbie understanding/skills. I tried to install django-heroku-memcacheify with pip install, which throws errors. I tracked the problem down to pylibmc, which is causing all the problems.…
tiwei
  • 728
  • 10
  • 19
7
votes
2 answers

Inconsistent data with a failed cache node

I'm encountering a problem where data in my database is getting reverted to an old state. I think I have narrowed the problem down to this situation. Imagine a sequence of two purchases occurring like this: All cache nodes are working A user logs…
Brad Dwyer
  • 6,305
  • 8
  • 48
  • 68
6
votes
1 answer

PHP Memcached get returning 0 always

I have memcache (installed on php5) and memcached (installed on php7.2 via libmemcached) both connecting to the same memcached daemon/server. Memcache::get works perfectly fine and fetches the data as per my expectation. But when I do…
Abubakkar
  • 15,488
  • 8
  • 55
  • 83
6
votes
2 answers

memcached persistence in PHP does not work as expected

i have played a bit around with different memcached library and plugin version to enable real persistence between PHP memcache client and memcached server. The problem is that still connections are opened and closed so that the connection counter…
5
votes
2 answers

how to install libmemcached for django framework in ubuntu 10.04

I installed libmemcached 0,37 and ln -s /usr/local/lib/libmemcached.so.2 /usr/lib/libmemcached.so.2 but when I run manage.py it still return import _pylibmc RuntimeError: pylibmc requires >= libmemcached 0.32, was compiled with 0.31 I try to…
zztczcx
  • 430
  • 1
  • 5
  • 19
5
votes
1 answer

libmemcached-1.0.8 make fails in ubuntu lucid

I was trying to make and install libmemcached-1.0.8 from source in ubuntu lucid.I tried these steps sudo wget http://download.tangent.org/libmemcached-1.0.8.tar.gz sudo ./configure -prefix=/usr sudo make the make command caused this error In file…
damon
  • 8,127
  • 17
  • 69
  • 114
4
votes
0 answers

unable to install pylibmc on windows

I am trying to install pylibmc using "pip install pylibmc" on my windows 10 machine but I am getting the following error. I need to know if there is any way to install libmemcached on windows 10 as I need to install pylibmc which requires…
4
votes
4 answers

memcached set not stored

The following step has followed: telnet localhost 11211 set Test 0 100 10 get Test CLIENT_ERROR bad data chunk ERROR set amit 2 2 2 get amit CLIENT_ERROR bad data chunk ERROR
Amit Bajaj
  • 41
  • 1
  • 3
4
votes
1 answer

Correct way to load bulk data

I am trying to load a huge amount of data into memcachedb. I am running some queries on MySQL database, and I want to store the results of these queries in memcachedb for later easy access. Currently, I was just using simple set commands to store…
Wajahat
  • 1,593
  • 3
  • 20
  • 47
4
votes
2 answers

How can I install libmemcached for Mac OS X Yosemite 10.10 in order to install the memcached.so PHP extension on Mamp 3?

I need to install libmemcached on my MacBook Pro running Mac OS X Yosemite. I have already installed the memcached daemon, but in order to make the PHP memcached.so PECL extension to work, I need to install libmemcached. I have downloaded the…
tonix
  • 6,671
  • 13
  • 75
  • 136
4
votes
2 answers

Install PECL Memcached Error

I followed the following steps to install PECL memcached in my Centos Server, always got errors. First. Install libmemcached cd /opt wget http://launchpad.net/libmemcached/1.0/0.40a/+download/libmemcached-0.40.tar.gz tar -xzvf…
Tester
  • 798
  • 2
  • 12
  • 32
4
votes
0 answers

Having trouble installing pylibmc OSX 10.9

I've installed libmemcached with homebrew, and tried to install pylibmc with PIP but to no avail: Downloading/unpacking pylibmc==1.2.2 Running setup.py egg_info for package pylibmc Installing collected packages: pylibmc Running setup.py install…
Guy Bowden
  • 4,997
  • 5
  • 38
  • 58
3
votes
2 answers

how can i get libmemcached for windows?

i'm trying to install the memcached extension in my windows localhost: wamp 64 php 5.5.12. see memcached at: https://pecl.php.net/package/memcached (notice that This extension uses libmemcached library) unfortunately there is not a ready dll for…
codingnighter2000
  • 497
  • 1
  • 7
  • 24
1
2 3 4 5 6 7 8