Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ortuman authored Mar 12, 2024
1 parent 5527be7 commit ec1e86c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ A memory arena is a method of memory management where a large block of memory is

* **Enhanced Cache Locality**: Memory arenas can also improve cache locality by allocating closely related objects within the same block of memory. This arrangement increases the likelihood that when one object is accessed, other related objects are already in the cache, thus reducing cache misses and enhancing overall application performance.

* **Garbage Collection Efficiency**: Using memory arenas can reduce the workload on the garbage collector by decreasing the number of objects that need to be tracked and collected, leading to less pause time and more predictable performance.

However, while memory arenas offer these advantages, they are not a silver bullet and come with trade-offs, such as potentially increased memory usage due to unused space within the allocated blocks. Careful consideration and profiling are necessary to determine whether using a memory arena is beneficial for a particular application.

## Getting Started
Expand Down Expand Up @@ -167,4 +165,4 @@ If you have any questions, feedback or suggestions, please feel free to contact

## License

This project is licensed under the terms of the Apache-2.0 license.
This project is licensed under the terms of the Apache-2.0 license.

0 comments on commit ec1e86c

Please sign in to comment.