@leebyron I have an app where user can open a tab "comments", to load comments of a specific post.
My query looks like this:
```
viewer {
posts(id:1) {
id
comments(first: 10) {
…
When dealing with large datasets it would be nice to be able to use also other cache drivers as Redis, memcache etc. as it could be too much for just memory storage, so DataLoader should be able to ha…