By: anon2 (anon.delete@this.anon.com), November 27, 2020 3:13 pm
Room: Moderated Discussions
Brett (ggtgp.delete@this.yahoo.com) on November 27, 2020 1:18 pm wrote:
> anon2 (anon.delete@this.anon.com) on November 26, 2020 5:59 pm wrote:
> > 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.
> >
> > Do you honestly believe you are in a position to be making such claims?
> >
> > I absolutely believe in the visionary or polymath who can see things in a different way
> > or at a higher level and revolutionizes a field or a technology. I've seen it happen.
> >
> > These people are not idle talkers or musers or outsiders who know or care little about existing
> > technologies and practices, they work hard, they are dedicated, they know the current state
> > of the art as well as anybody, and that's how they understand they can do better.
>
> I spent 20 years in the video game industry optimizing code everyone else said was already optimized,
> and the proof was that the code was 20 years old and used by hundreds of AAA titles.
> Much of the code WAS optimal for the previous generation of hardware,
> or more often the previous-previous generation of hardware.
>
> Few programmers understand how CPU’s work and most importantly how that effects code performance. Others
> think I am pulling off miracles, it is just simple engineering, just as you say, hard work and knowledge.
This knowledge and experience does not transfer to filesystems and CPU logic though. It might give you a bit more idea than the average programmer, but maybe not.
I have no problem with people pointing out what sucks in their experience without understanding how it works. I have no problem with dreaming big from people who aren't experts ("oh hey I have this great idea the filesystem could be a database...").
What annoys me is the combination of 1. pointed criticism of the state of the art and people who actually make this stuff happen as in your rant (obviously motivated by your upset that Linux beats OSX in performance). 2. proclaiming that you know what all the problems are and exactly how they should be fixed despite clearly having a flimsy awareness of the problems that arise with your "the right way" to do things (which has been tried more than once before). 3. Not only that but you also demonstrated that not only are you oblivious to the current state of technology, you don't even understand the very basics of the simplest building blocks from half a century or more ago.
And yet you still seem to feel no shame or humility and go on boasting and proclaiming about how you know everything. I point out a clear fundamental misunderstanding you had about filesystem updates, and you just completely ignore my post and go on to make even more fanciful claims.
This is why you are a blowhard and a charlatan. Just for once try the next time you post here to not begin with the assumption that you know everything about everything.
>
> > You on the other hand seemed to be unaware of a basic filesystem metadata block cache or buffer cache
> > that has been a thing for half a century. This is just like your "post-RISC" incoherent babbling. You
>
> RISC was optimal for a short decade in the last century,
"RISC" including RISC ideas in x86 is what all of the world's top CPU designers still do, are still pursuing and they are making billions of dollars from billions of dollars of investment, and continue to improve the technology while these handwavy "post-RISC" concepts you proclaim to be far better are nowhere to be seen. Surely the self-proclaimed genius video game programmer would know better than all those thousands of researchers and logic designers though.
> I want to know what comes next.
Again I have no problem with that, but that's not what you say and act like, is it? You act like you *know* what comes next or what should come next, and it is your super-duper thing that solves everything.
>
> I have learned a lot, my most recent proposal over on comp.arch to use a pair of tightly
> coupled six wide cores to run loops 12 wide is somewhat viable. You do need to be smart
> with cloning data across the pair of L0 and L1 data caches or you will be data starved.
>
> Yes this is mental masterbation as I am in software and this is a hardware issue.
Again, no problem with that. But you're painting yourself a little more humble than reality, aren't you?
Your bullcrap about filesystems and databases is also mental masturbation because you are as far away from those concepts as you are from CPU design. Being "in software" doesn't help. So try being humble about that as well.
> anon2 (anon.delete@this.anon.com) on November 26, 2020 5:59 pm wrote:
> > 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.
> >
> > Do you honestly believe you are in a position to be making such claims?
> >
> > I absolutely believe in the visionary or polymath who can see things in a different way
> > or at a higher level and revolutionizes a field or a technology. I've seen it happen.
> >
> > These people are not idle talkers or musers or outsiders who know or care little about existing
> > technologies and practices, they work hard, they are dedicated, they know the current state
> > of the art as well as anybody, and that's how they understand they can do better.
>
> I spent 20 years in the video game industry optimizing code everyone else said was already optimized,
> and the proof was that the code was 20 years old and used by hundreds of AAA titles.
> Much of the code WAS optimal for the previous generation of hardware,
> or more often the previous-previous generation of hardware.
>
> Few programmers understand how CPU’s work and most importantly how that effects code performance. Others
> think I am pulling off miracles, it is just simple engineering, just as you say, hard work and knowledge.
This knowledge and experience does not transfer to filesystems and CPU logic though. It might give you a bit more idea than the average programmer, but maybe not.
I have no problem with people pointing out what sucks in their experience without understanding how it works. I have no problem with dreaming big from people who aren't experts ("oh hey I have this great idea the filesystem could be a database...").
What annoys me is the combination of 1. pointed criticism of the state of the art and people who actually make this stuff happen as in your rant (obviously motivated by your upset that Linux beats OSX in performance). 2. proclaiming that you know what all the problems are and exactly how they should be fixed despite clearly having a flimsy awareness of the problems that arise with your "the right way" to do things (which has been tried more than once before). 3. Not only that but you also demonstrated that not only are you oblivious to the current state of technology, you don't even understand the very basics of the simplest building blocks from half a century or more ago.
And yet you still seem to feel no shame or humility and go on boasting and proclaiming about how you know everything. I point out a clear fundamental misunderstanding you had about filesystem updates, and you just completely ignore my post and go on to make even more fanciful claims.
This is why you are a blowhard and a charlatan. Just for once try the next time you post here to not begin with the assumption that you know everything about everything.
>
> > You on the other hand seemed to be unaware of a basic filesystem metadata block cache or buffer cache
> > that has been a thing for half a century. This is just like your "post-RISC" incoherent babbling. You
>
> RISC was optimal for a short decade in the last century,
"RISC" including RISC ideas in x86 is what all of the world's top CPU designers still do, are still pursuing and they are making billions of dollars from billions of dollars of investment, and continue to improve the technology while these handwavy "post-RISC" concepts you proclaim to be far better are nowhere to be seen. Surely the self-proclaimed genius video game programmer would know better than all those thousands of researchers and logic designers though.
> I want to know what comes next.
Again I have no problem with that, but that's not what you say and act like, is it? You act like you *know* what comes next or what should come next, and it is your super-duper thing that solves everything.
>
> I have learned a lot, my most recent proposal over on comp.arch to use a pair of tightly
> coupled six wide cores to run loops 12 wide is somewhat viable. You do need to be smart
> with cloning data across the pair of L0 and L1 data caches or you will be data starved.
>
> Yes this is mental masterbation as I am in software and this is a hardware issue.
Again, no problem with that. But you're painting yourself a little more humble than reality, aren't you?
Your bullcrap about filesystems and databases is also mental masturbation because you are as far away from those concepts as you are from CPU design. Being "in software" doesn't help. So try being humble about that as well.
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 |