By: Dummond D. Slow (mental.delete@this.protozoa.us), November 26, 2020 5:16 pm
Room: Moderated Discussions
Brett (ggtgp.delete@this.yahoo.com) on November 26, 2020 4:11 pm wrote:
> Andrey (andrey.semashev.delete@this.gmail.com) on November 26, 2020 12:33 pm wrote:
> > Brett (ggtgp.delete@this.yahoo.com) on November 26, 2020 11:29 am wrote:
> > >
> > > The beauty of this approach is that all this database needs is to import/export git, and
> > > have a filesystem driver, and you don’t care what the rest of the world is doing.
> > >
> > > You don’t even need git, git can write to the filesystem, there are just some opportunities
> > > to optimize git while you are at it. You can inline compression if it is free, etc.
> > >
> > > Everything just works, and you can now optimize the speed of builds and git by tuning the database
> > > layout behavior. A folder tree with hundreds of files spread all over the disk is now a small
> > > set of large linear packed files that stream quickly and use less disk and less ram.
> >
> > You're forgetting about fragmentation, which will inevitably happen as you modify the sources.
> > And if we're talking about SSDs then fragmentation is not an issue in either case.
>
> Git updates are largely a write only operation, compiles are a read only operation,
> editor changes only effect a handful of files and are irrelevant.
> The database only holds code, compiler output goes to the filesystem.
> Detecting disk idle and rewriting the database for speed is a given.
> Detecting a compile is trivial, saving the access order so
> as to rewrite the file order packing to match is trivial.
> Grep does not care about file order generally, gets a database
> directory file list in compile order, which is near optimal.
> Actual file order will go in and out of subdirectories almost randomly
> but a custom grep executable can follow database file order.
> The database knows which files are redundantly read from the last compile and keeps those sectors mapped.
>
> Now are you starting to see the benefits?
>
> A simple smart database turns a thousand different reads into almost one linear fire hose of packed
> data. The Linux compile advantage of 2X over MacOS and 4X+ over Windows turns into a deficit.
>
> What if the database gets corrupt?
> sudo rm -rf/*
> git
>
> Yes I included a typo.
>
> The Linux compile advantage is a stupid pet trick with little real world
> use outside of compiles, and will one day be rendered obsolete.
>
> > > This is a custom filesystem just for compiling, forcing bulk
> > > packed loads for speed. As a single purpose filesystem
> > > it can track usage and reconfigure to optimize usage. Something ordinary filesystems cannot do.
> >
> > I don't see why. In fact, I don't see why that should be a filesystem's business in the first place.
> > Rather, it should be done by IO scheduler regardless of
> > the underlying filesystem. And, if I'm not mistaken,
> > BFQ is doing some optimizations along these lines, though not specifically for compiling.
> >
> > And my main point stands - what you're saying sounds pretty much like yet another filesystem, possibly
> > with some IO scheduler tuning, which is nothing revolutionary. At this point I see no evidence that
> > it will significantly outperform existing filesystems, unless they are inherently inefficient for this
> > kind of workload on some particular hardware. Designing a filesystem is no small feat, and at this
> > point it is difficult to significantly improve upon the existing ones. Case in point BTRFS.
> >
> > > Important people read this site, someone may implement this idea, and as
> > > a software developer this will make me and you happy with faster builds.
> > >
> > > Because Microsoft and Apple are not going to optimize their
> > > OS’s for mmaping thousands of files like Linus
> > > does. In the end the Linus way will lose the performance crown. Everyone else has abandoned filesystems for
> > > databases, it is about time programmers did. Insert quote about the cobbler’s children do not wear shoes.
> >
> > Databases, especially relational ones, do not map well onto filesystems. Primarily,
> > because (existing) filesystems are mostly aimed at storing data, not necessarily
> > searching it. Various indexing services exist precisely to mitigate this.
> >
> > You don't need searching for compiling sources. In fact, you only need efficient open/read/write/close
> > operations, which is perfectly in line with what current filesystems do.
>
So basically, instead of fixing low performance of MacOS, you propose people should reinvent hoops and jump through them?
Sounds like a case of "you are holding it wrong to me".
> Andrey (andrey.semashev.delete@this.gmail.com) on November 26, 2020 12:33 pm wrote:
> > Brett (ggtgp.delete@this.yahoo.com) on November 26, 2020 11:29 am wrote:
> > >
> > > The beauty of this approach is that all this database needs is to import/export git, and
> > > have a filesystem driver, and you don’t care what the rest of the world is doing.
> > >
> > > You don’t even need git, git can write to the filesystem, there are just some opportunities
> > > to optimize git while you are at it. You can inline compression if it is free, etc.
> > >
> > > Everything just works, and you can now optimize the speed of builds and git by tuning the database
> > > layout behavior. A folder tree with hundreds of files spread all over the disk is now a small
> > > set of large linear packed files that stream quickly and use less disk and less ram.
> >
> > You're forgetting about fragmentation, which will inevitably happen as you modify the sources.
> > And if we're talking about SSDs then fragmentation is not an issue in either case.
>
> Git updates are largely a write only operation, compiles are a read only operation,
> editor changes only effect a handful of files and are irrelevant.
> The database only holds code, compiler output goes to the filesystem.
> Detecting disk idle and rewriting the database for speed is a given.
> Detecting a compile is trivial, saving the access order so
> as to rewrite the file order packing to match is trivial.
> Grep does not care about file order generally, gets a database
> directory file list in compile order, which is near optimal.
> Actual file order will go in and out of subdirectories almost randomly
> but a custom grep executable can follow database file order.
> The database knows which files are redundantly read from the last compile and keeps those sectors mapped.
>
> Now are you starting to see the benefits?
>
> A simple smart database turns a thousand different reads into almost one linear fire hose of packed
> data. The Linux compile advantage of 2X over MacOS and 4X+ over Windows turns into a deficit.
>
> What if the database gets corrupt?
> sudo rm -rf/*
> git
>
> Yes I included a typo.
>
> The Linux compile advantage is a stupid pet trick with little real world
> use outside of compiles, and will one day be rendered obsolete.
>
> > > This is a custom filesystem just for compiling, forcing bulk
> > > packed loads for speed. As a single purpose filesystem
> > > it can track usage and reconfigure to optimize usage. Something ordinary filesystems cannot do.
> >
> > I don't see why. In fact, I don't see why that should be a filesystem's business in the first place.
> > Rather, it should be done by IO scheduler regardless of
> > the underlying filesystem. And, if I'm not mistaken,
> > BFQ is doing some optimizations along these lines, though not specifically for compiling.
> >
> > And my main point stands - what you're saying sounds pretty much like yet another filesystem, possibly
> > with some IO scheduler tuning, which is nothing revolutionary. At this point I see no evidence that
> > it will significantly outperform existing filesystems, unless they are inherently inefficient for this
> > kind of workload on some particular hardware. Designing a filesystem is no small feat, and at this
> > point it is difficult to significantly improve upon the existing ones. Case in point BTRFS.
> >
> > > Important people read this site, someone may implement this idea, and as
> > > a software developer this will make me and you happy with faster builds.
> > >
> > > Because Microsoft and Apple are not going to optimize their
> > > OS’s for mmaping thousands of files like Linus
> > > does. In the end the Linus way will lose the performance crown. Everyone else has abandoned filesystems for
> > > databases, it is about time programmers did. Insert quote about the cobbler’s children do not wear shoes.
> >
> > Databases, especially relational ones, do not map well onto filesystems. Primarily,
> > because (existing) filesystems are mostly aimed at storing data, not necessarily
> > searching it. Various indexing services exist precisely to mitigate this.
> >
> > You don't need searching for compiling sources. In fact, you only need efficient open/read/write/close
> > operations, which is perfectly in line with what current filesystems do.
>
So basically, instead of fixing low performance of MacOS, you propose people should reinvent hoops and jump through them?
Sounds like a case of "you are holding it wrong to me".
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 |