Git Product home page Git Product logo

Comments (2)

yifeikong avatar yifeikong commented on June 21, 2024 1

Thanks for the timely reply! After some investigation, I'm using caio with Lock now, which suits me better. Great work for these two libraries!

from aiofile.

mosquito avatar mosquito commented on June 21, 2024

TL/DR: Writer - Yes, Reader - Yes, LineReader - Probably yes. However, the point is not quite clear, since these are objects that just contain a pointer to an offset, they are cheaper to copy and send each copy to the diferrent coroutines in my opinion.

I think questions like this has to do with some misunderstanding of exactly how this library designed under the hood. It's probably my bad, fail to explain this in the docs.

There is AIOFile, which is like a low-level abstraction that owns an instance of one of the implementations of AsyncioContext. It is a very simple object that can read and write only by offset, for that you get absolute competitiveness when reading and writing, without having to block anything.

So, objects of class BinaryFileWrapper and TextFileWrapper which is what the async_open function returns and mimicking the normal open in python. They have a caret that points to the file offset, and of course there are locks for read and write that do not allow a race between the operations and the value in the caret. The dark side of this simplicity is the lost read and write concirrency.

However, the library has some helpers that allow you to use one AIOFile concurrently. If you imagine that the user code has different coroutine roles which have different responsibilities, for example one writes data, the others only reads, then you can keep one AIOFile object and pass it wrapped in objects Writer, Reader and LineReader to this coroutines.

This is not the first question in this vein, I do not know how best to reflect this in the documentation, it would be great if someone could help me.

from aiofile.

Related Issues (20)

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.