Skip to content

Commit

Permalink
Update readme include CMap
Browse files Browse the repository at this point in the history
  • Loading branch information
Wsm2110 committed Jun 5, 2024
1 parent ac4bd1a commit 7be34b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Faster.Map is a collection of high-performance hashmaps implemented in C#, each
* QuadMap using Triangular Numbers:
Utilizes triangular numbers to achieve a balanced distribution of keys, minimizing collisions and enhancing lookup efficiency.
Offers a unique approach to hashmap implementation, ideal for specialized use cases.
* CMap is a high-performance, thread-safe, lockfree concurrent hash map that uses open addressing, quadratic probing, and Fibonacci hashing to manage key-value pairs. The default load factor is set to 0.5, meaning the hash map will resize when it is half full.


Installation:
* Installation:

You can include Faster.Map in your C# project via NuGet Package Manager:
```
Expand Down
3 changes: 2 additions & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ Faster.Map is a collection of high-performance hashmaps implemented in C#, each
* QuadMap using Triangular Numbers:
Utilizes triangular numbers to achieve a balanced distribution of keys, minimizing collisions and enhancing lookup efficiency.
Offers a unique approach to hashmap implementation, ideal for specialized use cases.
* CMap is a high-performance, thread-safe, lockfree concurrent hash map that uses open addressing, quadratic probing, and Fibonacci hashing to manage key-value pairs. The default load factor is set to 0.5, meaning the hash map will resize when it is half full.

Installation:
* Installation:

You can include Faster.Map in your C# project via NuGet Package Manager:
```
Expand Down

0 comments on commit 7be34b8

Please sign in to comment.