Skip to content

A Java HashMap where the values are kept off the heap in a Memory Mapped File

Notifications You must be signed in to change notification settings

srasul/off-heap-hashmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

off-heap-hashmap

A Java HashMap where the values are kept off the heap in a Memory Mapped File.

I created this Map implementatio for caches where the Value objects a really BIG and just sit on your heap doing not much. By keeping them off the heap, you can have a JVM with a smaller heap size which may be better.

I did this for two reasons:

  1. as a challange to myself
  2. as a prototype to show it can be done

For now it's just a toy project. If anyone in interested, I will clean it up, add tests etc.

About

A Java HashMap where the values are kept off the heap in a Memory Mapped File

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages