I am trying to read some values from the membase. I observer that when there is any integer the following command is not working.
var_dump($memcache->get("keyset123"));
print_r($memcache->get("keyset123"));
If the get result is a string the above command prints. If the get result is a Integer the above commands are printing none.
vardump prints =string(0) "" print_r prints none.
can you please tell me what is the issue