From:             
Operating system: Linux (Debian 5)
PHP version:      5.3.8
Package:          memcached
Bug Type:         Bug
Bug description:Memcached does not handle invalid keys

Description:
------------
Calling Memcached with invalid keys (too long, invalid characters) leads to

strange behavior.
Calling get with an invalid key and after that getMulti with a valid key
does not 
work (see below).


Versions:
memcached support => enabled
libmemcached version => 0.52

PECL:
memcached 1.0.2   stable


Test script:
---------------
<?php

class MemcachedTest extends \PHPUnit_Framework_TestCase
{
    public function testSet()
    {
        $mc = new Memcached();
        $mc->addServer('127.0.0.1', 11211);

        $mc->get(str_pad('', 300, 'x'));
        // it is "NOT FOUND"
        $this->assertEquals(Memcached::RES_BAD_KEY_PROVIDED,
$mc->getResultCode());

        $mc->getMulti(array('foo'));
        // it is "SERVER HAS FAILED AND IS DISABLED UNTIL TIMED RETRY"
        $this->assertEquals(Memcached::RES_BAD_KEY_PROVIDED,
$mc->getResultCode());
    }
}


Expected result:
----------------
The first $mc->get should lead to a result code "BAD KEY PROVIDED".
The second $mc->getMulti be "NOT FOUND" or "SUCCESS" depending on the cache

content.

Actual result:
--------------
The first $mc->get sets the result code to "NOT FOUND".
The second $mc->getMulti sets the result code to "SERVER HAS FAILED AND IS

DISABLED UNTIL TIMED RETRY".

-- 
Edit bug report at https://bugs.php.net/bug.php?id=60049&edit=1
-- 
Try a snapshot (PHP 5.4):            
https://bugs.php.net/fix.php?id=60049&r=trysnapshot54
Try a snapshot (PHP 5.3):            
https://bugs.php.net/fix.php?id=60049&r=trysnapshot53
Try a snapshot (trunk):              
https://bugs.php.net/fix.php?id=60049&r=trysnapshottrunk
Fixed in SVN:                        
https://bugs.php.net/fix.php?id=60049&r=fixed
Fixed in SVN and need be documented: 
https://bugs.php.net/fix.php?id=60049&r=needdocs
Fixed in release:                    
https://bugs.php.net/fix.php?id=60049&r=alreadyfixed
Need backtrace:                      
https://bugs.php.net/fix.php?id=60049&r=needtrace
Need Reproduce Script:               
https://bugs.php.net/fix.php?id=60049&r=needscript
Try newer version:                   
https://bugs.php.net/fix.php?id=60049&r=oldversion
Not developer issue:                 
https://bugs.php.net/fix.php?id=60049&r=support
Expected behavior:                   
https://bugs.php.net/fix.php?id=60049&r=notwrong
Not enough info:                     
https://bugs.php.net/fix.php?id=60049&r=notenoughinfo
Submitted twice:                     
https://bugs.php.net/fix.php?id=60049&r=submittedtwice
register_globals:                    
https://bugs.php.net/fix.php?id=60049&r=globals
PHP 4 support discontinued:          
https://bugs.php.net/fix.php?id=60049&r=php4
Daylight Savings:                    https://bugs.php.net/fix.php?id=60049&r=dst
IIS Stability:                       
https://bugs.php.net/fix.php?id=60049&r=isapi
Install GNU Sed:                     
https://bugs.php.net/fix.php?id=60049&r=gnused
Floating point limitations:          
https://bugs.php.net/fix.php?id=60049&r=float
No Zend Extensions:                  
https://bugs.php.net/fix.php?id=60049&r=nozend
MySQL Configuration Error:           
https://bugs.php.net/fix.php?id=60049&r=mysqlcfg

Reply via email to