batch-loader v1.0.0 Release Notes

Release Date: 2017-08-21 // over 6 years ago
    • 🔀 Removed: BatchLoader.sync! and BatchLoader#sync. Now syncing is done implicitly when you call any method on the lazy object.
    def load_user(user_id)
      BatchLoader.for(user_id).batch { ... }
    end