-
Notifications
You must be signed in to change notification settings - Fork 69
A number of improvements #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
a1exsh
commented
Sep 10, 2015
- directio
- blocksize
- sequential access
added direct io, sequential access pattern and initial blocksize option
|
Hi, direct io mode should be optional it should use os.open and not a 3rd party module; not using direct io is intended as this tests also the filesystem cache, but having an option is good. Greetings Benjamin |
|
Well, I don't see a benefit in testing the cache, but an option makes sense. Unfortunately, normal os.read() will fail on file opened in direct mode due Cheers! On Thu, Sep 10, 2015, 22:36 Benjamin Schweizer notifications@github.com
|
|
Hi Alex, to test real world scenarios, testing the cache is fine. So if you can make Greetings On Fri, Sep 11, 2015 at 7:05 AM, a1exsh notifications@github.com wrote:
|
|
On Fri, Sep 11, 2015 at 9:05 PM, Benjamin Schweizer <
Please see #5. Not sure if handling import error makes a lot of sense: if Alex |
|
Ok, let's decide this later;-) It won't do any damage when the option for direct io is off by default |
|
On Fri, Sep 11, 2015 at 9:14 PM, Benjamin Schweizer <
Yeah, probably a mention that for the option to work, the directio module |