Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

Latest commit

 

History

History
28 lines (22 loc) · 1 KB

README.md

File metadata and controls

28 lines (22 loc) · 1 KB

offheapstore-benchmark

A simple benchmark of some off heap solutions:

We also test a regular heap map to measure the overhead of off heap implementations.

We test different scenarios:

  • inserts
  • a sequential read of all entries
  • random reads
  • random reads with a gaussian function so that some elements are more likely to be accessed than others (should improve performances of implementations like Big Memory Go which uses a heap cache)
  • random reads and updates

TODO:

  • test with different bean size
  • measure memory fragmentation in the read/update scenario