数据查询用了memcache缓存,用sql做的键值,分页数据不变
回复讨论(解决方案)
怎????
如果你?的是一?字符串,不可能?的,?查下代?。
看看是否?自?加上??那些??。
是不是服务器数据就那么几条 不用分页啊? 导致每页数据都一样。。
贴出关键代码。
怎????
如果你?的是一?字符串,不可能?的,?查下代?。
看看是否?自?加上??那些??。
贴出关键代码。
$sql = "select id,avg_point,name,xpoint,ypoint,agent_area_id,area_id,supplier_id,index_img,dp_count,avg_point,deal_cate_id,ratio,area_id,note from aa where 1 = 1 and is_effect=1 and city_id in (18,1) order by id DESC limit 0,15"; $key = $GLOBALS['append_config']['IOS_CACHE_PRE'].$sql; $info = mcache_get($key); if(!$info){ $info = $GLOBALS['db']->getAll($sql); mcache_set($key,$info); }每次查询根据条件产生的sql是不一样的,只要sql不一样就会重新获取 ,但现在是即使sql作为键值每次都不一样也没有重新获取数据
把$sql md5?理吧。
memcache key有?度限制的。
$sql = "select id,avg_point,name,xpoint,ypoint,agent_area_id,area_id,supplier_id,index_img,dp_count,avg_point,deal_cate_id,ratio,area_id,note from aa where 1 = 1 and is_effect=1 and city_id in (18,1) order by id DESC limit 0,15";
$key = md5($GLOBALS['append_config']['IOS_CACHE_PRE'].$sql);
$info = mcache_get($key);
if(!$info){
$info = $GLOBALS['db']->getAll($sql);
mcache_set($key,$info);
}
是不是服务器数据就那么几条 不用分页啊? 导致每页数据都一样。。
数据有很多是需要分页的 Keys
----
Data stored by memcached is identified with the help of a key. A key
is a text string which should uniquely identify the data for clients
that are interested in storing and retrieving it. Currently the
length limit of a key is set at 250 characters (of course, normally
clients wouldn't need to use such long keys); the key must not include
control characters or whitespace.
百度翻译:
数据存储在memcached通过键值来标识。一个键的
是一个文本字符串必须唯一地识别客户的数据
有兴趣的存储和检索。目前,
一个键的 长度限制是250字符(当然,通常
客户不需要使用长键); 键必须不包括
控制字符或空格。
显然你已经违规了
ls已经说的很清楚了,虽然你的sql语句大约是220个字符长,并没有超出memcached的最大字符限制。但是因为sql中含有空格,所以,实际是使用sql的第一个空格之前的部分作为key的,这样的话,显然所有分页的数据都是一样的。
还是MD5搞起吧。
谢谢大家的热心回答
上一篇: 学点HTTP知识