1.0.5 • Published 7 years ago

stream-catcher v1.0.5

Weekly downloads
667
License
ISC
Repository
github
Last release
7 years ago

stream-catcher

a streaming wrapper around lru-cache

usage

var streamCache = new StreamCatcher({lru-cache options});

// ask for the data at `'key'` to be streamed to `writeStream`
streamCache.write('key', writeStream, notCachedCallback);

// ask to stream data to `'key'` from `readStream`
streamCache.read('key', readStream);

example

stream files from disk to a http response, cached for next time.

var streamCache = new StreamCatcher({
    max: 1024 * 100, // 100kb
    length: function(n){ 
        return n.length;
    }
});

var filePath = './foo/bar.txt';

function getFile(filePath, response){

    streamCache.write(filePath, response, function(){
        // function called if the cache is empty.
        // If so, read into the cache
        streamCache.read(filePath, fs.createReadStream(filePath));
    });

}

// First call: Nms
getFile(filePath, response);

// Next call: <Nms
getFile(filePath, response);

// Time passes, file falls out of cache...

// Next call ~ Nms
getFile(filePath, response);
1.0.5

7 years ago

1.0.4

8 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago