@es-git/read-combiner-mixin
TypeScript icon, indicating that this package has built-in type declarations

0.10.0 • Public • Published

read-combiner-mixin

This is part of the ES-Git project.

Install

npm install --save @es-git/read-combiner-mixin

Usage

Mix this in with an IObjectRepo.

This is a performance enhancing mixin. If reads for the same object are made at the same time, this mixin wil ensure that only one read is made to the repo.

import objectsMixin from '@es-git/objects-mixin';
import readCombinerMixin from '@es-git/read-combiner-mixin';
import MemoryRepo from '@es-git/memory-repo';

const Repo = mix(MemoryRepo)
            .with(objectsMixin)
            .with(readCombinerMixin);

const repo = new Repo();
const [object1, object2, object3] = await Promise.all([
  repo.loadObject(hash),
  repo.loadObject(hash),
  repo.loadObject(hash)
]);

Interfaces

This mixin does not enhance the repo in any observable way, it only wraps the loadObject methody

Readme

Keywords

none

Package Sidebar

Install

npm i @es-git/read-combiner-mixin

Weekly Downloads

1

Version

0.10.0

License

MIT

Unpacked Size

22.4 kB

Total Files

16

Last publish

Collaborators

  • mariusgundersen