Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize file reads in fs module #1071

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Oct 19, 2023

  1. refactor: optimize file reads in fs module

    By implementing a file stream and prefering std::fs::File instead of
    its tokio async variant, the fs module performance improves significantly
    when reading files resulting in ~79% more req/sec using ~57 less
    memory in Linux.
    A similar result should also be expected in Unix targets.
    joseluisq committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    9b17c4e View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    a4fbe79 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Configuration menu
    Copy the full SHA
    d9b026e View commit details
    Browse the repository at this point in the history