问题描述
- Go语言标准库文件随机IO带缓存么?
- 就是说,
func (f *File) ReadAt(b []byte off int64) (n int err error)
func (f *File) WriteAt(b []byte off int64) (n int err error)
这两个函数在标准库中,有没有带缓冲区?
底层是用的C的标准IO(带缓冲区)么?
解决方案
用bufio
http://golang.org/pkg/bufio/
解决方案二:
谢谢,bufio顾名思意是带buffer的,怎么实现不带buffer的写呢,对于写操作,想要确保数据真的写入了磁盘,即使主机掉电也不能会导致数据丢失。
时间: 2025-01-04 04:03:07