mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Add hexists to redisdb
This commit is contained in:
parent
34d73d6460
commit
92bd13fdcd
1 changed files with 3 additions and 0 deletions
|
@ -34,6 +34,9 @@ def redis_get(k):
|
|||
def redis_set(k,v):
|
||||
return redisdb.set(k,v)
|
||||
|
||||
def redis_hexists(t,k):
|
||||
return redisdb.hexists(t,k)
|
||||
|
||||
def redis_hget(t,k):
|
||||
return redisdb.hget(t,k)
|
||||
|
||||
|
|
Loading…
Reference in a new issue