Skip to content

NodeJSDevelopment/node-hashtable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hashmap

Sometimes you need to store so much data in memory that V8 can get a bit clogged up. This Node.js module provides an interface to a native hashmap data structure that exists outside of V8's memory constraints.

To install, simply:

npm install hashmap

Usage

Everything you might want to do first requires a new HashMap object (which corresponds to a native c++ unordered_map):

var HashMap = require('hashmap');
var hashmap = new HashMap();

And that's it!

About

Native hashtable interface for when V8 objects can't take the heat

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 55.9%
  • JavaScript 42.2%
  • Python 1.9%