在設計快取的資料時,可以快取以下型別的資料
例如如:user:: enable
以資料庫物件的角度考慮, 應用更普遍
例如, 使用者的基本資訊
user = user.query.filter_by(id=1).first()
user -> user物件
以資料庫查詢的角度考慮,應用場景較特殊,一般僅針對較複雜的查詢進行使用
query_result = user.query.join(user.profile).filter_by(id=1).first()
-> sql = "select a.user_id, a.user_name, b.gender, b.birthday from tbl_user as a inner join tbl_profile as b on a.user_id=b.user_id where a.user_id=1;"
# hash演算法 md5
query = md5(sql) # 'fwoifhwoiehfiowy23982f92h929y3209hf209fh2'
# redis
setex(query, expiry, json.dumps(query_result))
@route('/articles')
@cache(exipry=30*60)
def get_articles():
ch = request.args.get('ch')
articles = article.query.all()
for article in articles:
user = user.query.filter_by(id=article.user_id).first()
comment = comment.query.filter_by(article_id=article.id).all()
results = # 格式化輸出
return results
# redis
# '/artciels?ch=1': json.dumps(results)
@route('/articles')
@cache(exipry=30*60)
def get_articles():
ch = request.args.get('ch')
articles = article.query.all()
for article in articles:
user = user.query.filter_by(id=article.user_id).first()
comment = comment.query.all()
results =
return render_template('article_temp', results)
# redis
# '/artciels?ch=1': html
快取資料的儲存方式
如# 序列化 json字元 # setex('user::info') setex('user:1:info', expiry, json.dumps(user_dict))
如hmset('user:1:info', user_dict)
專案中的快取那些事兒
在高併發請求時,為何我們頻繁提到快取技術?最直接的原因是,目前磁碟io和網路io相對於記憶體io的成百上千倍的效能劣勢。做個簡單計算,如果我們需要某個資料,該資料從資料庫磁碟讀出來需要0.1s,從交換機傳過來需要0.05s,那麼每個請求完成最少0.15s 當然,事實上磁碟和網路io也沒有這麼慢,這裡...
OpenCV專案中應新增的項
由於每次寫程式的時候都要新增,所以寫在部落格上記下來 如果有人知道有什麼方法可以不用每次都新增下面的庫,希望不吝賜教 opencv features2d230d.lib opencv highgui230d.lib opencv core230d.lib opencv imgproc230d.lib...
在專案中利用Map實現資料快取功能
在專案開發中,對於資料庫中不經常更改,但需要經常查詢的資料,可以使用map將資料快取,減少資料庫io次數,提公升效能。一下 是實現過去12個月,按月份查詢每個月的進出廠數量,每個月的數量不會改變。首先定義乙個全域性私有變數map private map map new hashmap 業務方法 pu...