Skip to content

Commit

Permalink
redis mget
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhb committed Jul 12, 2024
1 parent 1d9bb62 commit 7279f89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/citation_count_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@ def main():
if redis_cits:
logger.info("Get citations form Redis for: "+str(anyid_pref+":"+any_id)+ " (omid: "+" ".join(multi_any_ids[any_id])+")" )
citing_omids = []
for omid in multi_any_ids[any_id]:


#__b_cits = redis_cits.mget(multi_any_ids[any_id])
__b_cits = [_g.decode('utf-8') for _g in redis_cits.mget(multi_any_ids[any_id])]

Expand Down

0 comments on commit 7279f89

Please sign in to comment.