ruby-batch-loader 1.4.1+dfsg.1-3 source package in Ubuntu

Changelog

ruby-batch-loader (1.4.1+dfsg.1-3) unstable; urgency=medium

  * Team upload.
  * d/control (Build-Depends): Add ruby-coveralls to fix reprotest.

 -- Daniel Leidert <email address hidden>  Fri, 28 Feb 2020 10:34:11 +0100

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-batch-loader_1.4.1+dfsg.1-3.dsc 2.1 KiB f30ad604685e3603dd6eb60f8887143bd027c2d6cdcf2b8a6a5f2b6f2993ff55
ruby-batch-loader_1.4.1+dfsg.1.orig.tar.gz 18.2 KiB e2eb1d4536c54cc18c78a17abd6fb736a7b4ef381204606f2901dadf04dd0841
ruby-batch-loader_1.4.1+dfsg.1-3.debian.tar.xz 3.9 KiB db0a9b7c88e683c4f459424344ce420bb9cfe361b60f37419746d19306ff6e08

Available diffs

No changes file available.

Binary packages built by this source

ruby-batch-loader: Powerful tool to avoid N+1 DB or HTTP queries

 This library provides a generic lazy batching mechanism to avoid N+1 DB
 queries, HTTP queries, etc.
 .
 Highlights
  * Generic utility to avoid N+1 DB queries, HTTP requests, etc.
  * Adapted Ruby implementation of battle-tested tools like Haskell Haxl, JS
    DataLoader, etc.
  * Batching is isolated and lazy, load data in batch where and when it's
    needed.
  * Automatically caches previous queries (identity map).
  * Thread-safe (`loader`).
  * No need to share batching through variables or custom defined classes.
  * No dependencies, no monkey-patches, no extra primitives such as Promises.