NikolaTasic
NikolaTasic

Reputation: 41

Memcached error in fuelPHPH, error code 47

I have problem with memcached in fuelphp.

i installed memcached and set everything as it should be and when i run my app i get following error.

Fuel\Core\FuelException [ Error ]: Memcached returned error code "47" on write. Check your configuration.

I know that configuration file in fuelphp is correct because it works on other computers, so that is not the issue. Something is wrong with my memcached.

Upvotes: 0

Views: 5540

Answers (2)

WanWizard
WanWizard

Reputation: 2574

47 means MEMCACHED_SERVER_TEMPORARILY_DISABLED, and you get it when your memcached connection goes into a tcp timeout or passes it's retry limit. It's generated by libmemcached, and is outside your control.

So you need to figure out why your memcached server became (temporarily) inaccessable.

Upvotes: 2

Cyprezz
Cyprezz

Reputation: 53

We have encountered the same problem and carried out a decision that problem is with our php-memcached module but not with FuelPHP at all. This error is not permanent for us and appears only at one server out of four.

Is this error permanent for your configuration?

Upvotes: 0

Related Questions