I know how Phalcon store data into cache when we fire $cache->save() method. It first serialize and then save date. But when we get data usign $cache->get(), it first data get and then unserialize. Now problem is phalcon does not check wheather it's integer value or string for unserialize ( as unserialize only apply for string ).
Now i store integer data into cache from other application and when i try to get this integer data from phalcon cache functions it gives me this error. Notice: MemcachePool::get(): Failed to unserialize data.
Is there any way to stop phalcon for unserialize data.