Skip to content

Latest commit

 

History

History
118 lines (100 loc) · 6.48 KB

containers.md

File metadata and controls

118 lines (100 loc) · 6.48 KB

Bookmarks tagged [containers]

https://www.youtube.com/watch?v=Utf-A4rODH8

Everyone has heard of Docker, but what is a container? Is it really "a lightweight VM"? In this talk we'll dispel the magic by writing a container in about 100 lines of Go.


https://code.google.com/p/cpp-btree/

A template library that implements ordered in-memory containers based on a B-tree data structure. [Apache2]


https://github.com/mattreecebentley/plf_colony

An unordered "bag"-type container which outperforms std containers in high-modification scenarios while maintaining permanent pointers to non-erased elements regardless of insertion/erasure. [zLib] [w...


https://github.com/pinam45/dynamic_bitset

A C++17 header-only dynamic bitset. [MIT]


https://github.com/xorz57/forest

Template library implementing an AVL, a Binary Search, a KD and a Quad Tree. [MIT]


https://github.com/goossaert/hashmap

Implementation of open addressing hash table algorithms in C++. [MIT]


https://github.com/Tessil/hopscotch-map

A fast header-only hash map which uses hopscotch hashing for collisions resolution. [MIT]


https://github.com/RSIA-LIESMARS-WHU/LSHBOX

A c++ toolbox of locality-sensitive hashing (LSH), provides several popular LSH algorithms, also support Python and MATLAB. [GPL]


https://github.com/mattreecebentley/plf_list

A std::list implementation which removes range splicing in order to enable cache-friendlier structure, yielding significant performance gains. [zLib] website


https://github.com/mattreecebentley/plf_stack

A replacement container for the std::stack container adaptor, with better performance than any std container in a stack context. [zLib] website


https://github.com/martinmoene/ring-span-lite

A simplified implementation of Arthur O'Dwyer's ring_span implementation ie. a circular buffer view. [MIT]


https://github.com/martinus/robin-hood-hashing

Fast & memory efficient hashtable based on robin hood hashing for C++14. [MIT]


https://github.com/Tessil/robin-map

Fast hash map and hash set using robin hood hashing. [MIT]


https://github.com/greg7mdp/sparsepp

A fast, memory efficient hash map for C++. [BSD 3-clause]


https://developers.redhat.com/blog/2017/04/04/openjdk-and-containers/

What can be done to help the OpenJDK JVM play well in the world of Linux Containers? I thought I’d start tackling this issue by answering some frequently asked questions:

**Why is it when I specify -...


https://github.com/Friz-zy/awesome-linux-containers#readme

A curated list of awesome Linux Containers frameworks, libraries and software - Friz-zy/awesome-linux-containers