Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: lookup of open vs drop #263

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 10 additions & 35 deletions api/src/dataloaders/collection.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::collections::HashMap;

use async_graphql::{dataloader::Loader as DataLoader, FieldError, Result};
use hub_core::tracing::info;
use poem::async_trait;
use redis::{AsyncCommands, Client as Redis};
use sea_orm::{prelude::*, FromQueryResult, QueryFilter, QuerySelect};
Expand Down Expand Up @@ -77,13 +76,9 @@ impl DataLoader<Uuid> for TotalMintsLoader {

for key in keys {
let redis_key = format!("collection:{key}:total_mints");
info!("total mints loader - get: redis_key: {}", redis_key);

match redis_connection.get::<_, i64>(&redis_key).await {
Ok(value) => {
info!(
"total mints loader - get: redis_key: {} value: {:?}",
redis_key, value
);
results.insert(*key, value);
},
Err(_) => {
Expand Down Expand Up @@ -119,14 +114,7 @@ impl DataLoader<Uuid> for TotalMintsLoader {
let count = count_results.get(&key).copied().unwrap_or_default();
let redis_key = format!("collection:{key}:total_mints");

info!(
"total mints loader - insert: redis_key: {} count: {:?}",
redis_key, count
);

redis_connection
.set::<_, i64, Option<i64>>(&redis_key, count)
.await?;
redis_connection.set(&redis_key, count).await?;

results.insert(key, count);
}
Expand Down Expand Up @@ -167,13 +155,8 @@ impl DataLoader<Uuid> for SupplyLoader {

for key in keys {
let redis_key = format!("collection:{key}:supply");
info!("supply loader - get: redis_key: {}", redis_key);
match redis_connection.get::<_, Option<i64>>(&redis_key).await {
Ok(value) => {
info!(
"supply loader - get: redis_key: {} value: {:?}",
redis_key, value
);
results.insert(*key, value);
},
Err(_) => {
Expand Down Expand Up @@ -202,16 +185,14 @@ impl DataLoader<Uuid> for SupplyLoader {
computed_supplies.push(collection.id);
continue;
}
continue;
}
let redis_key = format!("collection:{}:supply", collection.id);

let redis_key = format!("collection:{}:supply", collection.id);
redis_connection.set(&redis_key, collection.supply).await?;

let supply = redis_connection
.set::<_, Option<i64>, Option<i64>>(&redis_key, collection.supply)
.await?;

results.insert(collection.id, supply);
results.insert(collection.id, collection.supply);
} else {
computed_supplies.push(collection.id);
}
}

let count_results = collection_mints::Entity::find()
Expand All @@ -233,14 +214,8 @@ impl DataLoader<Uuid> for SupplyLoader {
for key in computed_supplies {
let count = count_results.get(&key).copied();
let redis_key = format!("collection:{key}:supply");
info!(
"supply loader - insert: redis_key: {} count: {:?}",
redis_key, count
);

redis_connection
.set::<_, Option<i64>, Option<i64>>(&redis_key, count)
.await?;

redis_connection.set(&redis_key, count).await?;

results.insert(key, count);
}
Expand Down
Loading