$ cnpm install typedarray-pool
A global pool for typed arrays.
var pool = require("typedarray-pool")
//Allocate a buffer with at least 128 floats
var f = pool.malloc(128, "float")
// ... do stuff ...
//When done, release buffer
pool.free(f)
npm install typedarray-pool
var pool = require("typedarray-pool")
pool.malloc(n[, dtype])Allocates a typed array (or ArrayBuffer) with at least n elements.
n is the number of elements in the array
dtype is the data type of the array to allocate. Must be one of:
"uint8""uint16""uint32""int8""int16""int32""float""float32""double""float64""arraybuffer""data""uint8_clamped""bigint64""biguint64""buffer"Returns A typed array with at least n elements in it. If dtype is undefined, an ArrayBuffer is returned.
Note You can avoid the dispatch by directly calling one of the following methods:
pool.mallocUint8pool.mallocUint16pool.mallocUint32pool.mallocInt8pool.mallocInt16pool.mallocInt32pool.mallocFloatpool.mallocDoublepool.mallocArrayBufferpool.mallocDataViewpool.mallocUint8Clampedpool.mallocBigInt64pool.mallocBigUint64pool.mallocBufferpool.free(array)Returns the array back to the pool.
array The array object to return to the pool.Note You can speed up the method if you know the type of array before hand by calling one of the following:
pool.freeUint8pool.freeUint16pool.freeUint32pool.freeInt8pool.freeInt16pool.freeInt32pool.freeFloatpool.freeDoublepool.freeArrayBufferpool.freeDataViewpool.freeUint8Clampedpool.freeBigInt64pool.freeBigUint64pool.freeBufferpool.clearCache()Removes all references to cached arrays. Use this when you are done with the pool to return all the cached memory to the garbage collector.
(c) 2014 Mikola Lysenko. MIT License
Copyright 2013 - present © cnpmjs.org