PHP and Redis Paging program code

Source: Internet
Author: User
Tags redis

After using the Redis speed up the result is the complexity of the operation of data, pagination has a feeling of the pants fart. But there is no other way. The code is as follows

The code is as follows Copy Code

<?php
$redis = new Redis;
$redis->connect (' 127.0.0.1 ', 6379,0);

//Database
$host = ' ******** ';
$user = ' root ';
$psd = ' * * *;
$dbname = ' ask ';

 


$link = mysql_connect ($host, $user, $PSD);
mysql_select_db ($dbname, $link);
mysql_query ("Set Names UTF8" );

 


$SQL = "SELECT * from question LIMIT";
$query = mysql_query ($SQL);
$questionName = ' questionname ';
while ($info = Mysql_fetch_array ($query)) {
$list [] = $info;
$redisName = ' question_id_ '. $info [' id '];
$redis- >hmset ($redisName, $info);
$redis->zadd ($questionName, $info [' id '], $info [' id ']);
$i + +;
}
$range = $redis->zrevrange ($questionName, 0,10);//Paging main function
foreach ($range as $qid) {
$pageList [] = $redis->hgetall (' question_id_ '. $qid);
}
Print_r ($pageList);
?

 
just knock and no code specification at all when doing an example. Please encapsulate the basic use of the method is Reids Hmset (), Zadd (), Hgetall (), Zrevrange (), if you do not understand can view the Redis manual, or with the pine forest discussion.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.