From: Sergey Matveev Date: Wed, 20 Aug 2025 06:49:54 +0000 (+0300) Subject: classic storage by default X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=refs%2Fheads%2Fbtrtrc-slow;p=btrtrc.git classic storage by default --- diff --git a/storage/file-client.go b/storage/file-client.go index e1414c7d..1cc61d99 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 &mmapFileIo{} + return &classicFileIo{} } func init() {