From 8fe0dba082fcb4fd6a9b1896d71194e2e2e90af9 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 15 Aug 2025 11:04:35 +1000 Subject: [PATCH] Set default file IO implementation to mmap --- storage/file-client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/file-client.go b/storage/file-client.go index dde12315..793b7e58 100644 --- a/storage/file-client.go +++ b/storage/file-client.go @@ -72,7 +72,7 @@ func (me *fileClientImpl) Close() error { } var defaultFileIo func() fileIo = func() fileIo { - return classicFileIo{} + return &mmapFileIo{} } func init() { -- 2.51.0