溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

thinkphp-cache

發(fā)布時間:2020-08-01 19:06:31 來源:網(wǎng)絡 閱讀:481 作者:素顏豬 欄目:web開發(fā)

說明

    可以用于select、find、valuecolumn方法,以及其衍生方法,使用cache方法后,在緩存有效期之內(nèi)不會再次進行數(shù)據(jù)庫查詢操作,而是直接獲取緩存中的數(shù)據(jù)

示例

Db::table('think_user')->where('id=5')->cache(true)->find();

指定緩存時間

Db::table('think_user')->cache(true,60)->find();
// 或者使用下面的方式 是等效的
Db::table('think_user')->cache(60)->find();

指定緩存標識

Db::table('think_user')->cache('key',60)->find();

調(diào)用緩存標識

$data = \think\Cache::get('key');


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI