Skip to content

stupid-genius/MapConcurrent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PartitionedBuffer

A multithreaded array.map

Original idea

This object implements a threading pattern common in Java, but that I've not seen in JavaScript. The interface is the same as a standard array (and can be extended to implement any missing Array features), but internally the data is stored in typed arrays, striped across multiple ArrayBuffers which are created during object construction.

The entire point of all of this is so that it is possible to call .map() and have it run concurrently. Data is striped across the internal buffers which are then transferred to Web Workers to be processed and then transferred back to the main thread. This is the magic sauce that makes parallel processing faster.

About

JavaScript concurrency object

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published