nitter/src/redis_cache.nim

110 lines
3.1 KiB
Nim
Raw Normal View History

2020-06-01 00:16:24 +00:00
import asyncdispatch, times, strutils, options, tables
import redis, redpool, msgpack4nim
export redpool, msgpack4nim
import types, api
const redisNil = "\0\0"
var
pool: RedisPool
baseCacheTime = 60 * 60
rssCacheTime: int
listCacheTime*: int
proc setCacheTimes*(cfg: Config) =
rssCacheTime = cfg.rssCacheTime * 60
listCacheTime = cfg.listCacheTime * 60
proc initRedisPool*(cfg: Config) =
2020-06-01 11:36:20 +00:00
try:
pool = waitFor newRedisPool(cfg.redisConns, maxConns=cfg.redisMaxConns,
host=cfg.redisHost, port=cfg.redisPort)
except OSError:
echo "Failed to connect to Redis."
quit(1)
2020-06-01 00:16:24 +00:00
template toKey(p: Profile): string = "p:" & toLower(p.username)
template toKey(l: List): string = toLower("l:" & l.username & '/' & l.name)
template to(s: string; typ: typedesc): untyped =
var res: typ
if s.len > 0:
s.unpack(res)
res
proc get(query: string): Future[string] {.async.} =
pool.withAcquire(r):
result = await r.get(query)
2020-06-02 20:36:02 +00:00
proc setex(key: string; time: int; data: string) {.async.} =
2020-06-01 00:16:24 +00:00
pool.withAcquire(r):
2020-06-02 20:36:02 +00:00
discard await r.setex(key, time, data)
2020-06-01 00:16:24 +00:00
2020-06-02 20:36:02 +00:00
proc cache*(data: List) {.async.} =
await setex(data.toKey, listCacheTime, data.pack)
2020-06-01 00:16:24 +00:00
proc cache*(data: PhotoRail; id: string) {.async.} =
2020-06-02 20:36:02 +00:00
await setex("pr:" & id, baseCacheTime, data.pack)
2020-06-01 00:16:24 +00:00
2020-06-02 20:36:02 +00:00
proc cache*(data: Profile) {.async.} =
2020-06-01 00:16:24 +00:00
pool.withAcquire(r):
r.startPipelining()
2020-06-02 20:36:02 +00:00
discard await r.setex(data.toKey, baseCacheTime, pack(data))
2020-06-01 00:16:24 +00:00
discard await r.hset("p:", toLower(data.username), data.id)
discard await r.flushPipeline()
proc cacheRss*(query, rss, cursor: string) {.async.} =
let key = "rss:" & query
pool.withAcquire(r):
r.startPipelining()
2020-06-02 20:36:02 +00:00
discard await r.hset(key, "rss", rss)
discard await r.hset(key, "min", cursor)
2020-06-01 00:16:24 +00:00
discard await r.expire(key, rssCacheTime)
discard await r.flushPipeline()
proc getProfileId*(username: string): Future[string] {.async.} =
pool.withAcquire(r):
result = await r.hget("p:", toLower(username))
if result == redisNil:
result.setLen(0)
proc getCachedProfile*(username: string; fetch=true): Future[Profile] {.async.} =
let prof = await get("p:" & toLower(username))
if prof != redisNil:
result = prof.to(Profile)
else:
result = await getProfile(username)
2020-06-01 00:16:24 +00:00
if result.id.len > 0:
await cache(result)
proc getCachedPhotoRail*(id: string): Future[PhotoRail] {.async.} =
if id.len == 0: return
let rail = await get("pr:" & toLower(id))
if rail != redisNil:
result = rail.to(PhotoRail)
else:
result = await getPhotoRail(id)
await cache(result, id)
proc getCachedList*(username=""; name=""; id=""): Future[List] {.async.} =
let list = if id.len > 0: redisNil
else: await get(toLower("l:" & username & '/' & name))
if list != redisNil:
result = list.to(List)
else:
if id.len > 0:
result = await getGraphListById(id)
else:
result = await getGraphList(username, name)
2020-06-02 20:36:02 +00:00
await cache(result)
2020-06-01 00:16:24 +00:00
proc getCachedRss*(key: string): Future[(string, string)] {.async.} =
var res: Table[string, string]
pool.withAcquire(r):
res = await r.hgetall("rss:" & key)
if "rss" in res:
result = (res["rss"], res.getOrDefault("min"))