gpt4 book ai didi

python - 在 Redis 上存储和访问复杂 JSON 对象的最快和最好的方法

转载 作者:可可西里 更新时间:2023-11-01 11:24:26 26 4
gpt4 key购买 nike

我一直在使用 ReJSON(json.set) 在我的 redis 服务器上存储复杂的 JSON。例如:

{'2018-02-01' : {'cid_1':{ 'city_1: {'mid_1: {'user_data : ...},{'merchant_data': ...},{'item_data':...}...}...}...}

一次访问一个键非常快。但是访问和添加数月的数据需要相当可观的时间。

是否有另一种更好的方法来存储/访问这些复杂的 json 结构:

1) 因此,如果我只需要 user_data,则不必检索所有其他数据然后过滤掉其余数据,例如:

dict_a = rj.jsonget(self.start_date, rejson.Path.rootPath())
dict_a = dict_a[self.cid][self.city][self.merchant]['User_data']

按时测试后,我看到99%的时间都花在了获取和计算数据上。那么基于此,您认为我的代码需要更多优化吗?

def calculate_total(self,T):
delta = self.delta()
for i in range(delta):
try:
dict_a = rj.jsonget(self.start_date, rejson.Path.rootPath())
if T == 1:
dict_a = dict_a[self.cid][self.city][self.merchant]['Merchant_data']
elif T == 2:
dict_a = dict_a[self.cid][self.city][self.merchant]['User_data']
elif T == 3:
dict_a = dict_a[self.cid][self.city][self.merchant]['Item_data']
break
except KeyError:
self.start_date = str((datetime.strptime(self.start_date, '%Y-%m-%d') + timedelta(days=i)).date())
else:
return ('Error 404- No Data found for %s, in %s on %s'%(self.cid,self.city,start_date))

for i in range(delta):
new_date = str((datetime.strptime(self.start_date, '%Y-%m-%d') + timedelta(days=i+1)).date())
try:
dict_b = rj.jsonget(new_date, rejson.Path.rootPath())
if T == 1:
dict_b = dict_b[self.cid][self.city][self.merchant]['Merchant_data']
elif T == 2:
dict_b = dict_b[self.cid][self.city][self.merchant]['User_data']
elif T == 3:
dict_b = dict_b[self.cid][self.city][self.merchant]['Item_data']
else:
dict_b = rj.jsonget(new_date, rejson.Path.rootPath())
dict_a = merge_dict(dict_a,dict_b)
except KeyError:
pass
return (dict_a)

def merge_dict(dictA, dictB):
new_dict = {}
common_keys = set([key for key in dictA if key in dictB] + [key for key in dictB if key in dictA])
for k, v in dictA.items():
#add unique k of dictA
if k not in common_keys:
new_dict[k] = v

else:
#add inner keys if they are not containing other dicts
if type(v) is not dict:
if k in dictB:
new_dict[k] = v + dictB[k]
else:
#recursively merge the inner dicts
new_dict[k] = merge_dict(dictA[k], dictB[k])

#add unique k of dictB
for k, v in dictB.items():
if k not in common_keys:
new_dict[k] = v

return new_dict

最佳答案

与其将这个复杂的 json 存储在 redis 中,不如使用 redis 数据结构将其逐段存储。在以这种方式存储时,请记住在检索数据时需要执行的查询。这将带您正确使用不同的 redis 数据结构,以最大限度地减少查询执行时间。

关于python - 在 Redis 上存储和访问复杂 JSON 对象的最快和最好的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51539056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com