2023-10-26 21:07:35 +00:00
|
|
|
import asyncio
|
|
|
|
import json
|
2023-10-30 21:00:55 +00:00
|
|
|
from typing import List
|
|
|
|
|
2022-11-17 19:53:58 +00:00
|
|
|
from base.redis import redis
|
2022-10-04 00:32:29 +00:00
|
|
|
from orm.shout import Shout
|
2022-11-21 08:13:57 +00:00
|
|
|
from resolvers.zine.load import load_shouts_by
|
2022-10-04 00:32:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearchService:
|
|
|
|
lock = asyncio.Lock()
|
2023-10-30 21:00:55 +00:00
|
|
|
# cache = {}
|
2022-10-04 00:32:29 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2022-10-04 09:25:59 +00:00
|
|
|
async def init(session):
|
|
|
|
async with SearchService.lock:
|
2023-10-30 21:00:55 +00:00
|
|
|
print("[search.service] did nothing")
|
|
|
|
# SearchService.cache = {}
|
2022-10-04 00:32:29 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2023-10-30 21:00:55 +00:00
|
|
|
async def search(text, limit, offset) -> List[Shout]:
|
2022-11-17 20:29:04 +00:00
|
|
|
cached = await redis.execute("GET", text)
|
2022-11-17 19:53:58 +00:00
|
|
|
if not cached:
|
|
|
|
async with SearchService.lock:
|
2023-10-30 21:00:55 +00:00
|
|
|
options = {"title": text, "body": text, "limit": limit, "offset": offset}
|
2022-11-26 00:55:45 +00:00
|
|
|
payload = await load_shouts_by(None, None, options)
|
2022-11-17 20:29:04 +00:00
|
|
|
await redis.execute("SET", text, json.dumps(payload))
|
2022-11-17 19:53:58 +00:00
|
|
|
return payload
|
|
|
|
else:
|
|
|
|
return json.loads(cached)
|