Commit ed59b426 authored by 李小芳's avatar 李小芳

同步新的表

parent a90cb529
......@@ -210,17 +210,6 @@ class QueryWordAttr(object):
logging.error("catch exception,err_msg:%s" % traceback.format_exc())
return 0
@classmethod
def get_hot_search_unique_num(cls, name):
try:
redis_data = redis_client.hget(cls.tips_num_redis_key_prefix, name)
redis_val_dict = json.loads(str(redis_data, encoding="utf-8")) if redis_data else {}
results_num = redis_val_dict['t'] if 't' in redis_val_dict else 0
return results_num
except:
logging.error("catch exception,err_msg:%s" % traceback.format_exc())
return 0
@classmethod
def get_search_query_results_num(cls, name):
try:
......
......@@ -12,6 +12,7 @@ from trans2es.utils.doctor_transfer import DoctorTransfer
from trans2es.models import wordresemble
from trans2es.utils.wordresemble import WordResemble
class SearchWord(object):
@classmethod
......@@ -63,7 +64,7 @@ class SearchWord(object):
is_online = False if instance.is_delete else True
item_dict["is_online"] = is_online
item_dict["order_weight"] = int(0.01 * instance.uv)
item_dict["results_num"] = QueryWordAttr.get_hot_search_unique_num(keyword)
item_dict["results_num"] = QueryWordAttr.get_query_results_num(keyword)
item_dict["type_flag"] = "unknown"
item_dict["offline_score"] = 0.0
item_dict["tips_name_type"] = 5
......
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