-
Notifications
You must be signed in to change notification settings - Fork 514
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
[QUESTION] Why aren't keys being de-duplicated even when the cache is disabled? #311
Comments
It actually is deduplicating the IDs, but it's doing it with an equality check. If you open your JS console and run some tests: 1 === 1
=> true
[1] === [1]
=> false This is because each array is a different object, so they are not reference equal. If you pass in the same array reference: const a = [1];
=> undefined
const b = a;
=> undefined
b === a;
=> true then they'll be the same. In your example case, just flatten the arrays so you're passing in pure numbers and they'll be de-duped for you by dataloader. |
HI, is there a way I can set a custom |
const dataLoader2 = new DataLoader(async (ids) => {
dataLoader2.clearAll();
// [
// { id: 1, cid: 2 },
// { id: 2, cid: 3 },
// { id: 3, cid: 4 },
// { id: 4, cid: 5 },
// { id: 5, cid: 6 }
// ]
console.log(ids)
return ids
}, {
cacheKeyFn: (obj: any) => {
// return JSON.stringify(obj) // Even extreme
return obj.id
}
}
)
// Let's say the first 5 requests come from one user and the next 5 requests come from another user because the cache uses a Map it's really hard to reuse the same reference (from different contexts of requests)
;[
{ id: 1, cid: 2 },
{ id: 2, cid: 3 },
{ id: 3, cid: 4 },
{ id: 4, cid: 5 },
{ id: 5, cid: 6 },
{ id: 1, cid: 2 },
{ id: 2, cid: 3 },
{ id: 3, cid: 4 },
{ id: 4, cid: 5 },
{ id: 5, cid: 6 },
].forEach((id) => dataLoader2.load(id)) |
Duplicate of #280. |
@denis-sokolov I checked for duplicates but I missed that issue. Closing this as the other issue does a better job at explaining the problem. Thanks |
Is there a reason why DataLoader doesn't deduplicate ids provided to the batch function when the cache is set to false?
I'm not sure if this would be a feature request or if it would be considered a bug? Or am I missing something that prevents us from de-duplicating the keys provided to the batch function? :)
The text was updated successfully, but these errors were encountered: