I am firing multiple queries in my php code:
Ex :
$query1 = $db->fetchAll("SELECT * FROM `table` WHERE 1);
$query2 = $db->fetchAll("SELECT * FROM `table` WHERE 1);
$query3 = $db->fetchAll("SELECT * FROM `table` WHERE 1);
I want memcache implementation for all queries. How can I achieve this using single unique key?
I think you are confusing memcache and sql. Here are some problems I notice:
$queryvariables to be different?