directio

This is library for the Go language to enable use of Direct IO under all OSes

  • 所有者: ncw/directio
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

DirectIO

This is library for the Go language to enable use of Direct IO under
all supported OSes of Go (except openbsd and plan9).

Direct IO does IO to and from disk without buffering data in the OS.
It is useful when you are reading or writing lots of data you don't
want to fill the OS cache up with.

See here for package docs

http://godoc.org/github.com/ncw/directio

Install

Directio is a Go library and installs in the usual way

go get github.com/ncw/directio

Usage

Instead of using os.OpenFile use directio.OpenFile

in, err := directio.OpenFile(file, os.O_RDONLY, 0666)

And when reading or writing blocks, make sure you do them in chunks of
directio.BlockSize using memory allocated by directio.AlignedBlock

block := directio.AlignedBlock(directio.BlockSize)
    _, err := io.ReadFull(in, block)

License

This is free software under the terms of MIT the license (check the
COPYING file included in this package).

Contact and support

The project website is at:

There you can file bug reports, ask for help or contribute patches.

Authors

Contributors

主要指標

概覽
名稱與所有者ncw/directio
主編程語言Go
編程語言Go (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2013-06-28 16:24:31
推送於2023-09-20 11:48:55
最后一次提交2018-02-24 20:34:47
發布數6
最新版本名稱v1.0.5 (發布於 2019-03-28 14:49:47)
第一版名稱v1.0.0 (發布於 2018-05-31 11:18:12)
用户参与
星數325
關注者數13
派生數36
提交數10
已啟用問題?
問題數11
打開的問題數3
拉請求數2
打開的拉請求數1
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?