Giter VIP home page Giter VIP logo

go-flock's Introduction

go-flock File-lock

English | 简体中文

  • Based on the syscall.FcntlFlock and syscall.Flock to achieve global file locks and local file locks.
  • Only the method of the UNIX system is implemented, Window is temporarily unavailable. If you are interested, you can submit the relevant method

Instructions

  • Introduce
go get github.com/guojia99/go-flock
  • Interface
type LockFile interface {
	File() *os.File
	Lock() error
	RLock() error
	TryLock() bool
	TryRLock() bool
	Unlock() error
}
  • Use global file lock
package main

import (
	"github.com/guojia99/flock"
)

func main(){
    fl := flock.OpenLockFile("file.file")
    fl.Lock()
    defer fl.Unlock()
    fl.File().Write([]byte{1, 2, 3})
}
  • Use the file local lock, of which 0, 1000 means that the lock is valid for the 0 to 1000 bytes
package main

import (
	"github.com/guojia99/flock"
)

func main(){
    fl := flock.OpenBlockLockFile("file.file", 0, 1000)
    fl.Lock()
    defer fl.Unlock()
	fl.File().WriteAt([]byte{1, 2, 3}, 0)
    
    fl2 := flock.OpenBlockLockFile("file.file", 1000, 2000)
    fl2.Lock()
    defer fl2.Unlock()
    fl.File().WriteAt([]byte{1, 2, 3}, 1000)
}

License

Go-Flock is based on the Apache 2.0 license and checksLICENSEto get more information.

go-flock's People

Contributors

guojia99 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.