fadvise
is a CLI command to call posix_fadvise(2)
for a specific file.
The following is an example of cache eviction.
shell
❯ cat Cargo.toml > /dev/null
❯ fincore -b Cargo.toml
RES PAGES SIZE FILE
4096 1 500 Cargo.toml
❯ fadvise dontneed Cargo.toml
filename: Cargo.toml
advice: POSIX_FADV_DONTNEED
offset: 0
len: 500
❯ fincore -b Cargo.toml
RES PAGES SIZE FILE
0 0 500 Cargo.toml
shell
❯ cargo install fadvise
shell
❯ git clone https://github.com/StoneDot/linux-tools.git
❯ cd linux-tools/fadvise/
❯ cargo install --path .
```shell
❯ mkdir -p $HOME/.local/share/bash-completion/completions
❯ fadvise completion --shell bash > $HOME/.local/share/bash-completion/completions/fadvise ```
```shell
❯ mkdir -p $HOME/.zsh.d/functions
❯ fadvise completion --shell zsh > $HOME/.zsh.d/functions/_fadvise
$HOME/.zsh.d/functions
❯ echo '[ "${fpath[(I)$HOME/.zsh.d/functions]}" -eq 0 ] && fpath=($fpath $HOME/.zsh.d/functions)' | tee -a $HOME/.zshrc ```