dataloader icon indicating copy to clipboard operation
dataloader copied to clipboard

Implementation of Facebook's DataLoader in Golang

Results 27 dataloader issues
Sort by recently updated
recently updated
newest added

In this review, I added a few options: 1. Data cache interface for the ability to wrap the batch function and its positive results in the cache. Now you can...

Dataloaders present a unique challenge with tracing, as batching is one of the few instances where the invariant that a span has a single parent is broken. Many different parent...

I found 2 problems in data loader. 1. We can't use non-memory cache, because cache save lambda function. 2. If user close context, batchFunc return error, and this error will...

The cache in dataloader alone is an incredibly useful tool for backing up requests, but one of the things that I am interested in with regards to the added complexity...

Hi, Int the README.md, I found: `This implementation contains a very basic cache that is intended only to be used for short lived DataLoaders (i.e. DataLoaders that only exist for...

Currently, when using a dataloader with a cache, errors returned by the`BatchFunc` are stored in the cache. A user should be able to decide on caching errors depending on the...

Thanks so much for merging the open PR's! Would it be possible to create a new tag/release so we can drop our fork and use the merged code using the...