sparsepp

A fast, memory efficient hash map for C++

OTHER License

Downloads
169
Stars
1.2K
Committers
12

Bot releases are hidden (Show)

sparsepp - 2018.2 Stable Latest Release

Published by greg7mdp about 6 years ago

Fix issues #62 and #70

sparsepp - 2018 Stable

Published by greg7mdp over 6 years ago

sparsepp - 2017 Stable

Published by greg7mdp almost 7 years ago

Includes small changes in the last year. No code changes for a couple months. Calling this stable :-)

sparsepp - File reorganization - not single header anymore

Published by greg7mdp over 7 years ago

  • not single header anymore - too much of a hassle
  • custom allocator not quite ready yet. It is checked in, but sparsepp is still using the old allocator (easy to toggle - line 15 of spp_config.h)
sparsepp - Stable release - main issue is the excessive memory usage on Windows

Published by greg7mdp over 7 years ago

The first official release of sparsepp - production ready on linux/macos.

I do not consider it production ready on Windows, because the realloc implementation on this platform seems to waste an inordinate amount of memory when reallocating (and sparsepp does a lot of reallocations), so the memory usage is much greater on Windows than it should be.

To address this issue, I am currently implementing a custom allocator which will fix this memory usage issue on windows, and should also increase performance on all platforms. This will be version 1.0, as it will truly fulfill the promise of low memory usage on all platforms.