BufferedFiles.jl

Functions to Implement overall better Filehandles
Author PaulDepping
Popularity
0 Stars
Updated Last
3 Years Ago
Started In
March 2022

BufferedFiles.jl

Implementation of Buffered Filehandles for higher IO Performance.

Installation:

import Pkg
Pkg.add("BufferedFiles")

or:

# Change to Pkg-Mode with ]
(@v1.7) pkg> add BufferedFiles

Usage:

using BufferedFiles

io = bufferedopen("/path/to/file", om"r") # Read
# ... or:
io = bufferedopen("/path/to/file", om"w") # Write

Documentation