PHP速度大放送(5)
来源:未知 责任编辑:责任编辑 发表时间:2015-03-01 01:33 点击:次
$key = md5($sql); //memcached 对象标识符 www.2cto.com
if ( !($datas = $mc->get($key)) ) {
// 在 memcached 中未获取到缓存数据,则使用数据库查询获取记录集
echo “n”.str_pad(‘Read datas from MySQL.’, 60, ‘_’).”n”;
$conn = mysql_connect(‘localhost’, ‘test’, ‘test’);
mysql_select_db(‘test’);
$result = mysql_query($sql);
while ($row = mysql_fetch_object($result))
相关新闻>>
- 发表评论
-
- 最新评论 更多>>