Skip to content

TethysSvensson/file_hashmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

File-backed HashMap

This code is a slightly changed version of the HashMap from libcollections. For the original version see libcolletions.

The only difference is how memory is allocated. Specifically this versions allocator uses file-backed memory (effectively swap).

This is probably a bad idea, but could be useful in situations where you plan to allocate huge HashMaps, but do not want to depend on your systems swap. There might be several reasons for this:

  • You do not have enough swap to run your program , and uses this library as a way to temporarily increase your capacity.

  • You do not have any swap at all, as you have enough memory to support your normal usage.

  • You do not wish to minimize the performance impact of running the code, but not forcing other processes to swap and drop their caches as the HashMap claims all your memory. I have not tested how well this works in practice.

Right now this only works on Linux 3.11 and higher, since it uses the O_TMPFILE flag.

About

File-backed HashMap

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages