By: Andrey (andrey.semashev.delete@this.gmail.com), November 26, 2020 1:41 pm
Room: Moderated Discussions
Maynard Handley (name99.delete@this.name99.org) on November 26, 2020 1:02 pm wrote:
>
> Of course building is a different type of task from a standard file system! In particular building generates
> a large number of blobs which are essentially ephemeral and do not need the strong promises of persistence
> provided by the file system.
Yes they do need certain guarantees. Including persistence and integrity. You need the intermediate files to be able to perform incremental builds. You need to be sure they are not corrupted e.g. due to the underlying media failure when you (re)use them.
And I fail to see how a database solution would not be persistent. Keeping all the intermediate data in RAM is simply not realistic even for moderate sized projects.
> But if you insist on using only the APIs of the ancients, then there is no way
> to express this ephemerality; the best you can do is fake it via a deliberately ephemeral (bespoke) file
> system like a RAM disk, or you can optimize the rest of the file system for this ephemeral task, at the expense
> of robust persistence. (Clearly a tradeoff that almost none on the Linux side understand, to judge by the
> sheer idiocy and cluelessness of the comments following when I explained this a week ago.)
A hint to the filesystem might be useful, although exactly how much benefit it would provide is not clear. Even if it does, that hardly requires a completely new approach to filesystems.
> And of course a whole lot more comes along if you build into a database rather than misusing the file system,
> in particular dependency can be more reliable than the shaky chain of "last changed" dates and guessed-at dependencies
> that comprise make.
I'm not sure what's your point here. Whatever the underlying storage, a build system has to track dependencies and rebuild targets as necessary. This works with current filesystems just fine, and I'm sure it could be made to work with a database. I don't see it as a reason to choose one solution over the other.
> You can persist modules or headers or various compiler-internal graphs in the most convenient
> form rather than forcing them down to a serialization that's slow to load into and out of the compiler or linker.
If you think you could just dump compiler memory to a database then you are mistaken. Serialization happens one way or the other.
> You can query the database for certain code patterns in ways more sophisticated than grep.
Compilers do not use grep. They actually don't work with text beyond parsing the source code. There is C/C++ preprocessor, but it already works with tokens. The bulk of the work happens on expression trees, which are not even the source programming language anymore.
>
> Of course building is a different type of task from a standard file system! In particular building generates
> a large number of blobs which are essentially ephemeral and do not need the strong promises of persistence
> provided by the file system.
Yes they do need certain guarantees. Including persistence and integrity. You need the intermediate files to be able to perform incremental builds. You need to be sure they are not corrupted e.g. due to the underlying media failure when you (re)use them.
And I fail to see how a database solution would not be persistent. Keeping all the intermediate data in RAM is simply not realistic even for moderate sized projects.
> But if you insist on using only the APIs of the ancients, then there is no way
> to express this ephemerality; the best you can do is fake it via a deliberately ephemeral (bespoke) file
> system like a RAM disk, or you can optimize the rest of the file system for this ephemeral task, at the expense
> of robust persistence. (Clearly a tradeoff that almost none on the Linux side understand, to judge by the
> sheer idiocy and cluelessness of the comments following when I explained this a week ago.)
A hint to the filesystem might be useful, although exactly how much benefit it would provide is not clear. Even if it does, that hardly requires a completely new approach to filesystems.
> And of course a whole lot more comes along if you build into a database rather than misusing the file system,
> in particular dependency can be more reliable than the shaky chain of "last changed" dates and guessed-at dependencies
> that comprise make.
I'm not sure what's your point here. Whatever the underlying storage, a build system has to track dependencies and rebuild targets as necessary. This works with current filesystems just fine, and I'm sure it could be made to work with a database. I don't see it as a reason to choose one solution over the other.
> You can persist modules or headers or various compiler-internal graphs in the most convenient
> form rather than forcing them down to a serialization that's slow to load into and out of the compiler or linker.
If you think you could just dump compiler memory to a database then you are mistaken. Serialization happens one way or the other.
> You can query the database for certain code patterns in ways more sophisticated than grep.
Compilers do not use grep. They actually don't work with text beyond parsing the source code. There is C/C++ preprocessor, but it already works with tokens. The bulk of the work happens on expression trees, which are not even the source programming language anymore.
Topic | Posted By | Date |
---|---|---|
The macOS performance deficit | Gabriele Svelto | 2020/11/22 03:02 PM |
The macOS performance deficit | rpg | 2020/11/22 09:45 PM |
The macOS performance deficit | Chester | 2020/11/22 10:20 PM |
It's not really a fair fight | anon2 | 2020/11/22 11:24 PM |
It's not really a fair fight | Gabriele Svelto | 2020/11/22 11:30 PM |
WSL | anon | 2020/11/23 01:21 AM |
WSL | konrad schwarz | 2020/11/23 04:49 AM |
WSL | Michael S | 2020/11/23 04:53 AM |
WSL | Konrad Schwarz | 2020/11/25 09:02 AM |
WSL | Michael S | 2020/11/25 09:19 AM |
Cygwin vs MSYS | Konrad Schwarz | 2020/11/26 02:12 AM |
Cygwin vs MSYS | Michael S | 2020/11/26 02:55 AM |
Cygwin vs MSYS | Konrad Schwarz | 2020/11/26 06:44 AM |
Cygwin vs MSYS | Howard Chu | 2020/11/26 12:15 PM |
WSL | WindowsExperience | 2020/11/23 05:17 AM |
WSL | Howard Chu | 2020/11/24 09:37 AM |
Windows | Chester | 2020/11/24 01:34 AM |
Windows | Michael S | 2020/11/24 02:22 AM |
Windows | Howard Chu | 2020/11/24 09:41 AM |
Windows | Chester | 2020/11/24 11:49 PM |
Windows | Michael S | 2020/11/25 12:26 AM |
Windows | Chester | 2020/11/25 03:40 PM |
Windows | Michael S | 2020/11/26 03:03 AM |
Windows and kernel time | Chester | 2020/11/27 12:57 AM |
Windows and kernel time | Etienne Lorrain | 2020/11/27 01:21 AM |
Windows and kernel time | Andrey | 2020/11/27 02:56 AM |
Windows and kernel time | Michael S | 2020/11/27 03:34 AM |
Windows and kernel time | James | 2020/11/27 06:35 AM |
Windows and kernel time | anon3 | 2020/11/27 01:02 PM |
Windows and kernel time | Brendan | 2020/11/27 04:39 PM |
Windows and kernel time | anon3 | 2020/11/27 05:22 PM |
Windows and kernel time | Brendan | 2020/11/27 06:43 PM |
Windows and kernel time | Gionatan Danti | 2020/11/28 02:13 PM |
Windows and kernel time | Andrey | 2020/11/27 07:56 AM |
Windows and kernel time | Simon Farnsworth | 2020/11/27 10:04 AM |
Windows and kernel time | anon | 2020/11/27 01:55 PM |
You also avoid bus contention | Carson | 2020/12/05 02:26 AM |
You also avoid bus contention | David Hess | 2020/12/05 05:07 AM |
You also avoid bus contention | Carson | 2020/12/05 09:50 AM |
You also avoid bus contention | David Hess | 2020/12/05 05:04 PM |
Windows and kernel time | Konrad Schwarz | 2020/12/21 06:45 AM |
Windows and kernel time | David Hess | 2020/11/27 07:13 PM |
Windows and kernel time | Linus Torvalds | 2020/11/27 12:00 PM |
Windows and kernel time | Gionatan Danti | 2020/11/28 03:05 PM |
Windows and kernel time | Linus Torvalds | 2020/11/28 04:18 PM |
Windows and kernel time | Brendan | 2020/11/28 08:21 PM |
Windows and kernel time | Doug S | 2020/11/29 08:58 AM |
Windows and kernel time | Brendan | 2020/11/29 07:10 PM |
I read the profile wrong | Chester | 2020/11/30 11:10 AM |
Windows and kernel time | Doug S | 2020/11/30 11:10 AM |
Windows and kernel time | Jörn Engel | 2020/11/29 03:47 AM |
Windows and kernel time | Linus Torvalds | 2020/11/29 11:17 AM |
Thanks for the explanation (NT) | Gionatan Danti | 2020/11/29 04:25 AM |
Windows and kernel time | Gabriele Svelto | 2020/11/29 12:17 PM |
Windows and kernel time | Etienne Lorrain | 2020/11/30 01:19 AM |
Windows and kernel time | Adrian | 2020/11/30 04:57 AM |
It's not really a fair fight | Howard Chu | 2020/11/24 09:34 AM |
The macOS performance deficit | konrad schwarz | 2020/11/23 04:52 AM |
The macOS performance deficit | Jon Masters | 2020/11/23 09:14 AM |
The macOS performance deficit | software_engineer | 2020/11/23 10:33 AM |
The macOS performance deficit | Maynard Handley | 2020/11/23 11:03 AM |
The macOS performance deficit | anon2 | 2020/11/23 04:28 PM |
The macOS performance deficit | Maynard Handley | 2020/11/23 05:31 PM |
The macOS performance deficit | anon2 | 2020/11/23 07:10 PM |
The macOS performance deficit | Maynard Handley | 2020/11/23 08:53 PM |
The macOS performance deficit | anon2 | 2020/11/23 10:41 PM |
The macOS performance deficit | Gabriele Svelto | 2020/11/24 02:02 AM |
The macOS performance deficit | Ungo | 2020/11/24 03:30 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/24 03:38 AM |
The macOS performance deficit | anon2 | 2020/11/24 06:37 AM |
The macOS performance deficit | Ungo | 2020/11/24 11:31 AM |
The macOS performance deficit | anon2 | 2020/11/24 03:17 PM |
The macOS performance deficit | Ungo | 2020/11/24 07:27 PM |
The macOS performance deficit | anon2 | 2020/11/24 09:06 PM |
The macOS performance deficit | Linus Torvalds | 2020/11/23 11:59 AM |
The macOS performance deficit | gallier2 | 2020/11/23 11:13 PM |
The macOS performance deficit | Linus Torvalds | 2020/11/24 11:40 AM |
The macOS performance deficit | Jon Masters | 2020/11/24 01:52 AM |
Microsoft Linux | Paul | 2020/11/25 02:16 AM |
Microsoft Linux | Michael S | 2020/11/25 04:29 AM |
Microsoft Linux | m | 2020/11/25 07:52 AM |
Microsoft Linux | Dummond D. Slow | 2020/11/25 08:46 AM |
Microsoft Linux | Robert Williams | 2020/11/25 09:49 AM |
Microsoft Linux | m | 2020/11/25 12:22 PM |
Microsoft Linux | Michael S | 2020/11/26 02:21 AM |
Microsoft Linux | m | 2020/11/26 09:54 AM |
Microsoft Linux | juanrga | 2020/11/25 01:53 PM |
Microsoft Linux | m | 2020/11/25 10:02 PM |
Microsoft Linux | gpd | 2020/11/26 06:05 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/23 01:03 PM |
The macOS performance deficit | Ricardo B | 2020/11/29 06:31 PM |
The macOS performance deficit | Gionatan Danti | 2020/11/30 12:05 AM |
The macOS performance deficit | Ricardo B | 2020/11/30 12:35 AM |
The macOS performance deficit | Jacob Marley | 2020/11/30 12:45 AM |
The macOS performance deficit | Ricardo B | 2020/11/30 01:08 AM |
The macOS performance deficit | Gionatan Danti | 2020/11/30 01:22 AM |
The macOS performance deficit | Etienne Lorrain | 2020/11/30 03:08 AM |
The macOS performance deficit | Gionatan Danti | 2020/11/30 04:47 AM |
The macOS performance deficit | I_vs | 2020/11/23 04:58 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/23 05:36 AM |
The macOS performance deficit | I_vs | 2020/11/23 06:06 AM |
What is the disk performance of each system? (NT) | Anon | 2020/11/23 06:29 AM |
What is the disk performance of each system? | I_vs | 2020/11/23 09:29 AM |
The macOS performance deficit | Dummond D. Slow | 2020/11/23 07:24 AM |
The macOS performance deficit | I_vs | 2020/11/23 09:39 AM |
The macOS performance deficit | Jukka Larja | 2020/11/24 06:37 AM |
The macOS performance deficit | Howard Chu | 2020/11/24 09:58 AM |
The macOS performance deficit | I_vs | 2020/11/24 11:22 AM |
The macOS performance deficit | Adrian | 2020/11/24 10:27 AM |
The macOS performance deficit | Michael S | 2020/11/23 11:12 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/23 12:59 PM |
The macOS performance deficit | Doug S | 2020/11/23 11:58 AM |
The macOS performance deficit | Linus Torvalds | 2020/11/23 12:05 PM |
The macOS performance deficit | m | 2020/11/26 11:11 AM |
Process Creation and MacOS | Rob Thorpe | 2020/11/27 10:45 AM |
Process Creation and MacOS | Nksingh | 2020/11/28 04:23 PM |
Process Creation and MacOS | Foo_ | 2020/11/29 03:01 AM |
Process Creation and MacOS | nksingh | 2020/11/29 09:15 PM |
Interesting, looks like I was wrong on Windows too | Rob Thorpe | 2020/11/30 07:42 AM |
I meant to put (NT) in that title. And this one. (NT) | Rob Thorpe | 2020/11/30 07:44 AM |
Process Creation and MacOS | Louis Gerbarg | 2020/11/29 10:41 AM |
Process Creation and MacOS | Gabriele Svelto | 2020/11/29 12:09 PM |
Process Creation and MacOS | Louis Gerbarg | 2020/11/29 05:23 PM |
Process Creation and MacOS | Gabriele Svelto | 2020/11/30 01:05 PM |
Process Creation and MacOS | Louis Gerbarg | 2020/11/30 03:19 PM |
Process Creation and MacOS | gallier2 | 2020/12/01 12:25 AM |
Process Creation and MacOS | Gabriele Svelto | 2020/12/01 01:56 AM |
Process Creation and MacOS | Foo_ | 2020/12/01 12:30 PM |
That's informative (NT). | Rob Thorpe | 2020/11/30 07:43 AM |
Process Creation and MacOS | noko | 2020/11/29 11:12 PM |
The macOS performance deficit | Gabriele Svelto | 2020/11/23 12:56 PM |
The macOS performance deficit | anon2 | 2020/11/23 03:59 PM |
The macOS performance deficit | I_vs | 2020/11/24 11:40 AM |
The macOS performance deficit | Maynard Handley | 2020/11/24 02:06 PM |
The macOS performance deficit | anon2 | 2020/11/24 03:46 PM |
The macOS performance deficit | Maynard Handley | 2020/11/24 04:24 PM |
The macOS performance deficit | anon2 | 2020/11/24 05:43 PM |
The macOS performance deficit | Maynard Handley | 2020/11/24 06:04 PM |
The macOS performance deficit | anon2 | 2020/11/24 06:57 PM |
The macOS performance deficit | Brett | 2020/11/24 07:20 PM |
The macOS performance deficit | anon2 | 2020/11/24 09:22 PM |
The macOS performance deficit | Jörn Engel | 2020/11/25 03:31 AM |
The macOS performance deficit | Gionatan Danti | 2020/11/25 10:26 AM |
The macOS performance deficit | I_vs | 2020/11/24 11:12 PM |
The macOS performance deficit | anon2 | 2020/11/26 01:50 AM |
The macOS performance deficit | Andrey | 2020/11/26 04:24 AM |
The macOS performance deficit | Brett | 2020/11/24 08:01 PM |
The macOS performance deficit | Maynard Handley | 2020/11/24 09:09 PM |
Sour grapes (NT) | anon2 | 2020/11/24 09:28 PM |
The macOS performance deficit | Gabriele Svelto | 2020/11/25 05:15 AM |
The macOS performance deficit | Andrey | 2020/11/26 05:08 AM |
The macOS performance deficit | Brett | 2020/11/26 11:29 AM |
The macOS performance deficit | Andrey | 2020/11/26 12:33 PM |
The macOS performance deficit | Maynard Handley | 2020/11/26 01:02 PM |
The macOS performance deficit | Andrey | 2020/11/26 01:41 PM |
The macOS performance deficit | rwessel | 2020/11/26 10:43 PM |
The macOS performance deficit | James | 2020/11/27 02:06 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/26 03:08 PM |
The macOS performance deficit | Brett | 2020/11/26 04:11 PM |
The macOS performance deficit | Dummond D. Slow | 2020/11/26 05:16 PM |
The macOS performance deficit | Brett | 2020/11/27 12:56 PM |
The macOS performance deficit | Maynard Handley | 2020/11/27 02:32 PM |
The macOS performance deficit | Jukka Larja | 2020/11/27 09:02 PM |
The macOS performance deficit | Maynard Handley | 2020/11/28 10:46 AM |
The macOS performance deficit | Dummond D. Slow | 2020/11/28 12:09 PM |
The macOS performance deficit | software_engineer | 2020/11/28 01:35 PM |
The macOS performance deficit | Maynard Handley | 2020/11/28 03:20 PM |
The macOS performance deficit | Jukka Larja | 2020/11/28 09:09 PM |
The macOS performance deficit | Maynard Handley | 2020/11/28 09:27 PM |
The macOS performance deficit | Jukka Larja | 2020/11/28 11:29 PM |
The macOS performance deficit | software_engineer | 2020/11/29 12:56 AM |
The macOS performance deficit | Maynard Handley | 2020/11/29 11:29 AM |
The macOS performance deficit | Jukka Larja | 2020/11/28 09:18 PM |
The macOS performance deficit | James | 2020/11/29 04:02 AM |
The macOS performance deficit | Foo_ | 2020/11/29 05:12 AM |
The macOS performance deficit | Foo_ | 2020/11/29 05:18 AM |
The macOS performance deficit | Maynard Handley | 2020/11/29 11:35 AM |
The macOS performance deficit | anon2 | 2020/11/26 05:59 PM |
The macOS performance deficit | Brett | 2020/11/27 01:18 PM |
The macOS performance deficit | anon2 | 2020/11/27 03:13 PM |
The macOS performance deficit | Andrey | 2020/11/27 03:25 AM |
The macOS performance deficit | Brett | 2020/11/27 01:49 PM |
The macOS performance deficit | Linus Torvalds | 2020/11/28 11:16 AM |
The macOS performance deficit | Brett | 2020/11/28 06:44 PM |
The macOS performance deficit | anon2 | 2020/11/29 12:35 AM |
The macOS performance deficit | Brett | 2020/11/29 11:31 AM |
The macOS performance deficit | Gabriele Svelto | 2020/11/29 12:00 PM |
The macOS performance deficit | Brett | 2020/11/29 01:09 PM |
The macOS performance deficit | Maynard Handley | 2020/11/29 08:57 PM |
The macOS performance deficit | anon3 | 2020/11/29 09:37 PM |
The macOS performance deficit | Gionatan Danti | 2020/11/29 11:59 PM |
The macOS performance deficit | Dummond D. Slow | 2020/11/30 08:00 AM |
The macOS performance deficit | Maynard Handley | 2020/11/30 09:36 AM |
The macOS performance deficit | Gionatan Danti | 2020/11/30 10:12 AM |
The macOS performance deficit | Maynard Handley | 2020/11/30 08:21 PM |
The macOS performance deficit | Brett | 2020/11/30 11:17 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/01 09:34 AM |
The macOS performance deficit | Maynard Handley | 2020/12/01 12:03 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/01 02:38 PM |
The macOS performance deficit | Ungo | 2020/12/01 03:13 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/02 03:23 AM |
The macOS performance deficit | Doug S | 2020/12/02 10:38 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 02:23 AM |
The macOS performance deficit | Doug S | 2020/12/03 11:42 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 12:01 PM |
The macOS performance deficit | Doug S | 2020/12/03 02:37 PM |
The macOS performance deficit | Dummond D. Slow | 2020/12/03 05:20 PM |
The macOS performance deficit | Etienne Lorrain | 2020/12/04 01:14 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 10:53 PM |
The macOS performance deficit | Dummond D. Slow | 2020/12/03 05:15 PM |
SDRGJHI4 ? | Michael S | 2020/12/04 02:22 AM |
SDRGJHI4 ? | Doug S | 2020/12/04 08:21 AM |
SDRGJHI4 ? | Ungo | 2020/12/04 10:20 PM |
The macOS performance deficit | Ungo | 2020/12/02 01:57 PM |
The macOS performance deficit | Ricardo B | 2020/12/02 05:01 PM |
The macOS performance deficit | Michael S | 2020/12/02 12:15 PM |
4x | Michael S | 2020/12/02 01:09 PM |
4x | Doug S | 2020/12/02 01:40 PM |
4x | Ricardo B | 2020/12/02 05:16 PM |
4x | Anon | 2020/12/02 10:45 PM |
4x | Anon | 2020/12/02 10:47 PM |
4x | Andrey | 2020/12/03 12:01 AM |
4x | Ricardo B | 2020/12/03 01:51 AM |
4x | Anon | 2020/12/03 02:00 AM |
4x | Ricardo B | 2020/12/03 04:28 AM |
4x | Anon | 2020/12/03 05:25 AM |
4x | Ricardo B | 2020/12/03 07:33 AM |
4x | Anon | 2020/12/03 10:34 AM |
python v C/C++ | Michael S | 2020/12/03 01:42 PM |
hw matters | Michael S | 2020/12/03 03:43 PM |
hw matters | Foo_ | 2020/12/04 02:57 AM |
hw matters | Michael S | 2020/12/04 03:59 AM |
SSD history matters | Adrian | 2020/12/04 10:10 AM |
hw matters | Ricardo B | 2020/12/04 03:23 AM |
hw matters | Michael S | 2020/12/04 04:14 AM |
hw matters | Ricardo B | 2020/12/04 04:58 AM |
hw matters | Gionatan Danti | 2020/12/04 03:38 AM |
hw matters | Michael S | 2020/12/04 04:33 AM |
hw matters | Gionatan Danti | 2020/12/04 08:49 AM |
hw matters | Michael S | 2020/12/05 09:04 AM |
hw matters | Gionatan Danti | 2020/12/05 10:07 AM |
hw matters | Michael S | 2020/12/05 10:25 AM |
Win7 Home vs Pro | Michael S | 2020/12/07 08:43 AM |
Win7 Home vs Pro | Gionatan Danti | 2020/12/08 01:04 AM |
for MSVC users | Michael S | 2020/12/04 04:37 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 02:09 AM |
The macOS performance deficit | Jukka Larja | 2020/12/03 07:31 AM |
The macOS performance deficit | Ricardo B | 2020/12/03 08:46 AM |
The macOS performance deficit | Jukka Larja | 2020/12/03 10:01 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 12:37 PM |
The macOS performance deficit | Jukka Larja | 2020/12/04 06:14 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/04 08:51 AM |
The macOS performance deficit | Ungo | 2020/12/04 10:45 PM |
The macOS performance deficit | Jukka Larja | 2020/12/05 02:11 AM |
The macOS performance deficit | Michael S | 2020/12/05 09:49 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/05 10:11 AM |
The macOS performance deficit | Michael S | 2020/12/05 11:00 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/05 11:59 AM |
The macOS performance deficit | Michael S | 2020/12/05 12:22 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/05 09:41 AM |
The macOS performance deficit | Michael S | 2020/12/05 09:55 AM |
The macOS performance deficit | Ungo | 2020/12/05 09:39 PM |
The macOS performance deficit | anon3 | 2020/12/05 11:07 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/06 01:10 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/06 01:04 AM |
The macOS performance deficit | Ungo | 2020/12/06 12:24 PM |
The macOS performance deficit | Linus Torvalds | 2020/12/06 02:17 PM |
The macOS performance deficit | Ungo | 2020/12/06 03:28 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/07 02:31 AM |
The macOS performance deficit | Linus Torvalds | 2020/12/07 11:14 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/07 02:29 PM |
The macOS performance deficit | Linus Torvalds | 2020/12/08 12:36 PM |
Linux writeback | Gionatan Danti | 2020/12/08 01:23 PM |
Linux writeback | Linus Torvalds | 2020/12/08 03:57 PM |
Good points, thanks (NT) | Gionatan Danti | 2020/12/08 11:42 PM |
The macOS performance deficit | Ricardo B | 2020/12/06 04:05 PM |
The macOS performance deficit | Ricardo B | 2020/12/06 05:43 AM |
The macOS performance deficit | Ricardo B | 2020/12/06 05:48 AM |
The macOS performance deficit | Linus Torvalds | 2020/12/06 11:11 AM |
The macOS performance deficit | Ricardo B | 2020/12/06 02:57 PM |
Ext4 performance deficit | Brett | 2020/12/06 05:01 PM |
Ext4 performance deficit | Ricardo B | 2020/12/06 05:36 PM |
Ext4 performance deficit | Brett | 2020/12/06 06:13 PM |
Ext4 performance deficit | Brett | 2020/12/06 11:25 PM |
Ext4 performance deficit | Gionatan Danti | 2020/12/07 03:06 AM |
Ext4 performance deficit | Brett | 2020/12/07 02:12 PM |
Ext4 performance deficit | anonymou5 | 2020/12/07 08:04 PM |
Ext4 performance deficit | Gionatan Danti | 2020/12/08 12:59 AM |
Ext4 performance deficit | Brett | 2020/12/09 01:54 PM |
Ext4 performance deficit | Gionatan Danti | 2020/12/10 12:41 AM |
Ext4 performance deficit | Brett | 2020/12/10 12:08 PM |
Ext4 performance deficit | anon2 | 2020/12/10 12:33 PM |
Ext4 performance deficit | Ungo | 2020/12/10 12:14 PM |
Ext4 performance deficit | Brett | 2020/12/10 01:00 PM |
Ext4 performance deficit | anonymou5 | 2020/12/10 03:20 PM |
Ext4 performance deficit | Brett | 2020/12/13 12:04 AM |
Ext4 performance deficit | Michael S | 2020/12/13 01:29 AM |
Ext4 performance deficit | anonymou5 | 2020/12/13 02:46 AM |
Ext4 performance deficit | Linus Torvalds | 2020/12/13 11:30 AM |
Ext4 performance deficit | Michael S | 2020/12/13 12:24 PM |
Ext4 performance deficit | Brett | 2020/12/13 06:26 PM |
Ext4 performance deficit | anon | 2020/12/13 04:58 PM |
Ext4 performance deficit | Foo_ | 2020/12/14 03:56 AM |
Ext4 performance deficit | rwessel | 2020/12/14 06:16 AM |
Ext4 performance deficit | Brett | 2020/12/15 04:59 PM |
Ext4 performance deficit | Brett | 2020/12/19 04:23 PM |
Ext4 performance deficit | anon | 2020/12/19 04:44 PM |
Ext4 performance deficit | Brett | 2020/12/19 07:47 PM |
Ext4 performance deficit | Michael S | 2020/12/19 11:40 PM |
Ext4 performance deficit | Linus Torvalds | 2020/12/20 11:09 AM |
Ext4 performance deficit | Brett | 2020/12/24 06:08 PM |
Ext4 performance deficit | Michael S | 2020/12/25 01:32 AM |
Ext4 performance deficit | Adrian | 2020/12/11 01:42 AM |
Ext4 performance deficit | anon | 2020/12/11 12:34 PM |
Ext4 performance deficit | Adrian | 2020/12/12 02:46 AM |
Ext4 performance deficit | Gionatan Danti | 2020/12/10 01:06 PM |
Ext4 performance deficit | Jörn Engel | 2020/12/08 04:19 AM |
Serving NTFS? | Michael S | 2020/12/07 12:32 AM |
The macOS performance deficit | gallier2 | 2020/12/07 12:50 AM |
The macOS performance deficit | Andrey | 2020/11/30 12:14 PM |
The macOS performance deficit | Ungo | 2020/11/30 02:58 PM |
The macOS performance deficit | Maynard Handley | 2020/11/30 05:13 PM |
The macOS performance deficit | Ungo | 2020/12/01 12:37 AM |
The macOS performance deficit | Maynard Handley | 2020/12/01 09:49 AM |
The macOS performance deficit | Andrey | 2020/12/01 12:55 AM |
The macOS performance deficit | Gionatan Danti | 2020/12/01 01:48 AM |
The macOS performance deficit | Anne O. Nymous | 2020/12/01 02:10 AM |
The macOS performance deficit | Ricardo B | 2020/12/01 07:40 AM |
The macOS performance deficit | Ungo | 2020/12/01 06:03 PM |
The macOS performance deficit | Ricardo B | 2020/12/02 03:08 AM |
The macOS performance deficit | Doug S | 2020/12/02 10:51 AM |
The macOS performance deficit | Matt Sayler | 2020/12/02 05:36 PM |
The macOS performance deficit | Gionatan Danti | 2020/12/03 01:47 AM |
The macOS performance deficit | Louis Gerbarg | 2020/12/03 09:32 AM |
The macOS performance deficit | Doug S | 2020/12/03 11:51 AM |
The macOS performance deficit | Maynard Handley | 2020/11/30 06:21 PM |
The macOS performance deficit | Andrey | 2020/12/01 02:03 AM |
I take it no one here has any real storage admin experience | Doug S | 2020/12/01 09:39 AM |
I take it no one here has any real storage admin experience | Gionatan Danti | 2020/12/01 09:58 AM |
I take it no one here has any real storage admin experience | Andrey | 2020/12/01 12:40 PM |
I take it no one here has any real storage admin experience | David Hess | 2020/12/02 04:03 AM |
I take it no one here has any real storage admin experience | Doug S | 2020/12/02 10:57 AM |
I take it no one here has any real storage admin experience | David Hess | 2020/12/02 03:46 PM |
The macOS performance deficit | Simon Farnsworth | 2020/12/01 03:50 AM |
The macOS performance deficit | Ricardo B | 2020/12/01 11:23 AM |
The macOS performance deficit | anon2 | 2020/11/29 01:20 PM |
The macOS performance deficit | Doug S | 2020/11/29 09:18 AM |
The macOS performance deficit | Linus Torvalds | 2020/11/29 11:03 AM |
The macOS performance deficit | Howard Chu | 2020/11/30 09:07 AM |
The macOS performance deficit | Linus Torvalds | 2020/11/30 11:05 AM |
The macOS performance deficit | rwessel | 2020/11/30 11:54 AM |
The macOS performance deficit | anon | 2020/11/30 03:05 PM |
The macOS performance deficit | Howard Chu | 2020/11/30 07:57 PM |
The macOS performance deficit | Linus Torvalds | 2020/11/30 10:34 PM |
The macOS performance deficit | Brett | 2020/11/30 11:34 PM |
The macOS performance deficit | Brett | 2020/12/01 01:47 PM |
The macOS performance deficit | Linus Torvalds | 2020/12/01 02:57 PM |
The macOS performance deficit | Patrick Schlüter aka gallier2 | 2020/12/02 07:31 AM |
The macOS performance deficit | Doug S | 2020/12/02 11:07 AM |
The macOS performance deficit | Adrian | 2020/12/03 02:50 AM |
The macOS performance deficit | Linus Torvalds | 2020/12/03 12:28 PM |
The macOS performance deficit | Adrian | 2020/12/03 12:40 PM |
The macOS performance deficit | Brett | 2020/12/02 02:49 PM |
The macOS performance deficit | David Hess | 2020/12/01 08:17 PM |
BitKeeper | anon | 2020/12/01 12:03 AM |
BitKeeper | anon | 2020/12/01 12:28 AM |
charlatans | anon2 | 2020/12/01 02:57 AM |
charlatans | Michael S | 2020/12/01 04:30 AM |
charlatans | anon2 | 2020/12/01 05:38 AM |
charlatans | rwessel | 2020/12/01 06:18 AM |
version control | Michael S | 2020/12/02 11:50 AM |
version control | Linus Torvalds | 2020/12/02 01:18 PM |
Cheap commits are a huge git win | Carson | 2020/12/08 02:05 AM |
version control | anon2 | 2020/12/02 08:43 PM |
BitKeeper | Linus Torvalds | 2020/12/01 11:35 AM |
BitKeeper | anon | 2020/12/01 03:42 PM |
BitKeeper | anonymou5 | 2020/12/01 05:26 PM |
Larry? (NT) | anon2 | 2020/12/01 08:25 PM |
Larry McVoy, the lead developer of bitkeeper (NT) | Carson | 2020/12/08 02:07 AM |
The macOS performance deficit | Doug S | 2020/12/01 09:42 AM |
The macOS performance deficit | rwessel | 2020/12/01 05:51 AM |
The macOS performance deficit | anon | 2020/12/01 02:49 PM |
LMDB transactions | anon | 2020/11/30 02:58 PM |
LMDB transactions | Howard Chu | 2020/11/30 07:29 PM |
LMDB transactions | anon | 2020/11/30 11:44 PM |
LMDB transactions | Howard Chu | 2020/12/01 12:44 PM |
LMDB transactions | anon | 2020/12/01 02:33 PM |
LMDB transactions | Howard Chu | 2020/12/02 08:52 AM |
LMDB transactions | Howard Chu | 2020/12/02 08:55 AM |
LMDB transactions | Anon | 2020/12/02 10:54 AM |
Fossil SCM (SQLite based) works pretty well (NT) | anonymous2 | 2020/11/30 03:50 PM |
The macOS performance deficit | Anon | 2020/12/01 11:39 PM |