redis 經常使用場景-慢慢完善中

獲取最新插入的100記錄

# 最新文、最新圖片等等會使用到
# 聊天室的默認加載內容比較適合使用

// 連接Redis
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);

// push數據
if($_GET['redis'] == 'push'){
    for($i=1; $i<=60; $i++){
        $testData = "TestContent";
        $redis->lPush('testKey', $i.'===='.$testData);

        // 執行Ltrim 保持testKey裏只有10條最新的記錄.
        $redis->lTrim('testKey', 0, 9);
    }
}


// 讀取最新的 10條數據
if($_GET['redis'] == 'topn'){
    $testList = $redis->lRange('testKey', 0, -1);

    echo '<pre>';
    print_r($testList);
}
相關文章
相關標籤/搜索