Commit 260d99f5 authored by gm's avatar gm

fix key

parent 2cd61667
......@@ -160,7 +160,7 @@ def click(cookies_get, id):
@shared_task(retry_kwargs={'max_retries': 0})
def reply(cookies_get, id, content):
try:
reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (str(id), str(cookies_get), str(content))
reply_key = 'reply topic_id:%s, cookies_get: %s, content:%s' % (str(id), str(cookies_get), str(content))
cache_count = click_cache.incr(reply_key, 1)
reply_cache.expire(reply_key, settings.CACHE_SECONDS)
if cache_count > 1:
......@@ -293,8 +293,8 @@ def get_comments():
@shared_task(retry_kwargs={'max_retries': 0})
def follow(cookies_get, id):
try:
follow_key = 'click user_id:%s, cookies_get: %s' % (str(id), str(cookies_get))
cache_count = click_cache.incr(follow_key, 1)
follow_key = 'follow user_id:%s, cookies_get: %s' % (str(id), str(cookies_get))
cache_count = follow_cache.incr(follow_key, 1)
follow_cache.expire(follow_key, settings.CACHE_SECONDS)
if cache_count > 1:
return
......@@ -478,9 +478,9 @@ def set_reply_to_redis():
@shared_task(retry_kwargs={'max_retries': 0})
def reply2(cookies_get, id, content, replied_id):
try:
reply_key = 'click topic_id:%s, cookies_get: %s, content:%s, replied_id: %s' % \
reply_key = 'reply2 topic_id:%s, cookies_get: %s, content:%s, replied_id: %s' % \
(str(id), str(cookies_get), str(content), str(replied_id))
cache_count = click_cache.incr(reply_key, 1)
cache_count = reply_cache.incr(reply_key, 1)
reply_cache.expire(reply_key, settings.CACHE_SECONDS)
if cache_count > 1:
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment