mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 08:32:13 +11:00
📚🚧
This commit is contained in:
parent
598f73ff22
commit
2daed041f9
1 changed files with 2 additions and 0 deletions
|
|
@ -7,6 +7,8 @@
|
||||||
<!-- phmap vs std hash map -->
|
<!-- phmap vs std hash map -->
|
||||||
#### STD vs phmap
|
#### STD vs phmap
|
||||||
this parallel hashmap implementation is the basis of CCash, its where all the user data is stored, compared to the STD's `std::unordered_map<T>` its much faster, this, multi threading support, and more can be found in the [writeup](https://greg7mdp.github.io/parallel-hashmap/).
|
this parallel hashmap implementation is the basis of CCash, its where all the user data is stored, compared to the STD's `std::unordered_map<T>` its much faster, this, multi threading support, and more can be found in the [writeup](https://greg7mdp.github.io/parallel-hashmap/).
|
||||||
|

|
||||||
|

|
||||||
#### Scalability
|
#### Scalability
|
||||||
below is `GetBal()` being called where `x` axis grows with # of users reaching 10 million users, `y` axis is time in ns. The name given is random between 0 and max users at that time as to provide more accurate results.
|
below is `GetBal()` being called where `x` axis grows with # of users reaching 10 million users, `y` axis is time in ns. The name given is random between 0 and max users at that time as to provide more accurate results.
|
||||||
.png)
|
.png)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue