Skip to content

Commit

Permalink
chore: fix header font
Browse files Browse the repository at this point in the history
  • Loading branch information
arriqaaq committed Nov 13, 2024
1 parent 98feb69 commit c4ccd5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,9 @@ The following benchmarks measure single-operation latency across different key a
| 1,000 | 4 (u32) | 100 | 71.92 |
| 10,000 | 4 (u32) | 100 | 823.29 |

### Concurrent Operations
#### Concurrent Operations

#### Multi-threaded Insert Performance
##### Multi-threaded Insert Performance
Configuration:
- Key size: 16 bytes
- Value size: 32 bytes
Expand All @@ -383,7 +383,7 @@ Configuration:
| 4 | 589.8 | 169.6 |


All benchmarks were performed on [system specifications] with:
All benchmarks were performed with:
- Durability: Eventual
- Disk persistence: Enabled

Expand Down Expand Up @@ -437,7 +437,7 @@ This benchmark shows how different key-value size combinations affect load time

Key observations:
- Load time scales roughly linearly with store size
- Key and value size impact load time because each record's checksum is calculated based on their bytes, so an increase in size leads to an increase in time. However, the insertion into the index only stores the value offset against the key, which does not significantly affect load time.
- Key and value size impact load time because each record's checksum is calculated based on their bytes, so an increase in size leads to an increase in time to calculate the checksum. However, the insertion into the index only stores the value offset against the key, which does not significantly affect load time.


#### Impact of Version Count
Expand Down

0 comments on commit c4ccd5c

Please sign in to comment.