This is 100% bullshit and you (should) know it. You tout yourself as some sort of RDBMS person, but you come across as knowing absolutely nothing.
At the end of the day, Firebird, Postgres and Mysql all really only support one index type (or variant): b-tree. No matter where your data is presently (index or ram), you will ALWAYS pay a price for insert, and ALWAYS pay a price for select. Now, the number of i/os required for a btree seek is a very attractive equation for anything under the 10s or even hundreds of millions mark. If you're using a quote "standard server", it's exceeding that, or having to write where things _really_ start to suffer. Couple that with that foreign keys, which usually have a btree as well, and all your combinatorial indexes, and you're fucked with any reasonable large data set. There is no disagreement here, unless you suggest that btrees are infintely fast, or that postgres does indeed have a better index (It does have hash, but it's a piece of shit).
If you want to know more, I suggest you investigate the CAP theorem and apply some critical thinking skills to the age old question - given these tradeoffs and relationships and my tolerance to any given one, what is the best tool for the job?
English is hardly an exact business (read: language). Maybe you are suggesting we just remove duplication definitions from dictionaries? We could also remove opposites and adjectives, replacing them with double- and un-!
Seriously, with the native book app installed, plus the kindle app and angry birds. This is some of the best$ 250 I've ever spent. Ps: You pay tax b&n books, but not on amazons.
Agreed. I think code is _much_ easier to read, understand and work with if it's always the exact same syntax, tabbing/spacing/commas, etc(I suppose the fact that almost every software project has style guidelines lends credence to this). For this sort of stuff, especially harder (ORM generated or handwritten) queries, I use a very niche program named sqlinform that does an amazing job at putting queries into "your" style. When I do cleanups, the queries usually go from indecipherable to easily understandable. It by default uc'd the keywords, which I never did before but now I find it quite a bit easier to work with.
I'm not affiliated with the software/author, but I'm continually impressed how just how bizarre this software's functions are, yet how useful it is.
They're also still missing 99% of the subquery optimizations they had in the 6.0 Alpha codebase and 99% of the other improvements. When they went sun they started worrying too much about BC and improvements slowed down substantially. In my opinion, if you want less buggy software on a faster release model, you need to not give priority to BC. But then you lose the support contracts, which is all sun cares about.
Unless it's some extreme niche where the shaved cycles really pay off over some time, it seems like a gigantic waste of time for 5%-15% here and there. When you use precompiled, you're already looking at diminishing returns WRT compiling performance, but when you're spending your time compiling everything for that extra 3%, it seems pretty ridiculous. A fraction of that time could be spent flipping burgers to get enough dough to secure yourself a nice SSD which would make totally irrelevant any 1%-5% boosts. In fact, you might even get to finish up on the computer earlier, and go have some beers with your newfound supply of money and time.
(Originally replied to wrong poster, now modified to prevent "This exact comment has already been posted. Try to be more original... ") It's extremely unfair to link to the print version of that article. Anand put an immense amount of time into that (and everything before it!) and scarred quite a few bridges to bring it to light for his readers - there are very, very few reviewers out there that would do that for their readerbase. The least you could do is offer him and his site _some_ respect.
It's extremely unfair to link to the print version of that article. Anand put an immense amount of time into that (and everything before it!) and scarred quite a few bridges to bring it to light for his readers - there are very, very few reviewers out there that would do that for their readerbase. The least you could do is offer him and his site _some_ respect.
If you delete a partition or even a file, why the *hell* are you expecting it to be reversible? That's "delete" we're talking about here, not "hold my hand recycle bin". Delete. If you don't know in you're soul what you're doing, then why are you even in a partition editor?
I can see how you would draw that conclusion alone on just the numbers, but I think you failed to take into account that hard drives are selling at much faster rates than they did during the times of HDDs, and those rates are accelerating. Since volume is ramping up considerably, manf have insane incentives to increase there economies of scales at commenserate rates, thus lowering the costs.
If you don't believe it, use your same reasoning for SIMMs vs. DIMMs. Then try it against DIMMs vs. DDR1, then DDR2. I picked up two 2GB SODIMM DDR2 modules yesterday for $20/piece.
Heh, yeah, I guess I forgot about that. It's such a habit now to hit Escape immediately when I see the username and password box that I don't even think about it any more. That right there makes it one of the most inconvenient sites I have to visit. At least they do just about everything else right.
I've been using Linux on the desktop since '01, and I can for certain that around 2004 or was when I could visit random sites and have them work without any issues. There are two that I know of that "require" a browser/OS combo, but they let you carry on any way - at your own risk. Of course, they work fine. One is HR Block when filing taxes, the other is CitiCard's virtual/temporary CC# generator webapp.
You're implying that the amount of users a social networking site should have is somehow linear to how many database servers it needs. I have news for you - it doesn't. You also don't mention the roles for the servers, nor the hits per interval, nor even a feature comparison (some may have much harder hitting queries) - and finally, you're outright neglecting to mention hardware. MYB might have 17 quad core, 16x320GB 15k rpm drives compared to facebook's whitebox google model. Your entire post is useless without apples to apples comparisons.
The MAC address is not preserved outside of the local subnet, so unless they had captured packets on her local network (i.e. to here linksys router or CPE cable modem, etc.), the mac address they're picking up would be remarkably similar every time since a TCP/IP packet's source MAC address is always that of the router the packet hit last. It's extremely likely there are at least 5 routers between her computer and the *AA's equipment.
Not just that, but they probably have to format it to a publishable form, as well as proof read, correct and go through all the paperwork to make it so. If you think you can do it faster, I'm sure a clerk of courts job pays somewhere around 12-14$/hour, so be my guest.
This is 100% bullshit and you (should) know it. You tout yourself as some sort of RDBMS person, but you come across as knowing absolutely nothing.
At the end of the day, Firebird, Postgres and Mysql all really only support one index type (or variant): b-tree. No matter where your data is presently (index or ram), you will ALWAYS pay a price for insert, and ALWAYS pay a price for select. Now, the number of i/os required for a btree seek is a very attractive equation for anything under the 10s or even hundreds of millions mark. If you're using a quote "standard server", it's exceeding that, or having to write where things _really_ start to suffer. Couple that with that foreign keys, which usually have a btree as well, and all your combinatorial indexes, and you're fucked with any reasonable large data set. There is no disagreement here, unless you suggest that btrees are infintely fast, or that postgres does indeed have a better index (It does have hash, but it's a piece of shit).
If you want to know more, I suggest you investigate the CAP theorem and apply some critical thinking skills to the age old question - given these tradeoffs and relationships and my tolerance to any given one, what is the best tool for the job?
English is hardly an exact business (read: language). Maybe you are suggesting we just remove duplication definitions from dictionaries? We could also remove opposites and adjectives, replacing them with double- and un-!
I was thinking it could grip it by the husk.
Matched, and the only sony device I have is an alarm clock!
Ubuntu & Firefox here, no clipping on the left. Looks just fine. Might be resolution - I'm 1920x1080.
Posting from my rooted nook color.
Seriously, with the native book app installed, plus the kindle app and angry birds. This is some of the best$ 250 I've ever spent.
Ps:
You pay tax b&n books, but not on amazons.
Agreed. I think code is _much_ easier to read, understand and work with if it's always the exact same syntax, tabbing/spacing/commas, etc(I suppose the fact that almost every software project has style guidelines lends credence to this). For this sort of stuff, especially harder (ORM generated or handwritten) queries, I use a very niche program named sqlinform that does an amazing job at putting queries into "your" style. When I do cleanups, the queries usually go from indecipherable to easily understandable. It by default uc'd the keywords, which I never did before but now I find it quite a bit easier to work with.
I'm not affiliated with the software/author, but I'm continually impressed how just how bizarre this software's functions are, yet how useful it is.
It may be an oxymoron in the RDBMS world. In the distributed world, it's par for the course - in fact, it has its own letter in CAP.
They're also still missing 99% of the subquery optimizations they had in the 6.0 Alpha codebase and 99% of the other improvements. When they went sun they started worrying too much about BC and improvements slowed down substantially. In my opinion, if you want less buggy software on a faster release model, you need to not give priority to BC. But then you lose the support contracts, which is all sun cares about.
Unless it's some extreme niche where the shaved cycles really pay off over some time, it seems like a gigantic waste of time for 5%-15% here and there. When you use precompiled, you're already looking at diminishing returns WRT compiling performance, but when you're spending your time compiling everything for that extra 3%, it seems pretty ridiculous. A fraction of that time could be spent flipping burgers to get enough dough to secure yourself a nice SSD which would make totally irrelevant any 1%-5% boosts. In fact, you might even get to finish up on the computer earlier, and go have some beers with your newfound supply of money and time.
Microsoft tends to make the argument - validly so - that they don't want to incorporate new features until the standards are set.
I saw you try to sneak that one in there. Haha, nice try!
They don't support DVDs, but you can do hard drives (USB2/eSATA).
http://aws.amazon.com/importexport/
(Originally replied to wrong poster, now modified to prevent "This exact comment has already been posted. Try to be more original... ")
It's extremely unfair to link to the print version of that article. Anand put an immense amount of time into that (and everything before it!) and scarred quite a few bridges to bring it to light for his readers - there are very, very few reviewers out there that would do that for their readerbase. The least you could do is offer him and his site _some_ respect.
Whoops! Sorry, wrong post!
It's extremely unfair to link to the print version of that article. Anand put an immense amount of time into that (and everything before it!) and scarred quite a few bridges to bring it to light for his readers - there are very, very few reviewers out there that would do that for their readerbase. The least you could do is offer him and his site _some_ respect.
If you delete a partition or even a file, why the *hell* are you expecting it to be reversible? That's "delete" we're talking about here, not "hold my hand recycle bin". Delete. If you don't know in you're soul what you're doing, then why are you even in a partition editor?
I can see how you would draw that conclusion alone on just the numbers, but I think you failed to take into account that hard drives are selling at much faster rates than they did during the times of HDDs, and those rates are accelerating. Since volume is ramping up considerably, manf have insane incentives to increase there economies of scales at commenserate rates, thus lowering the costs.
If you don't believe it, use your same reasoning for SIMMs vs. DIMMs. Then try it against DIMMs vs. DDR1, then DDR2. I picked up two 2GB SODIMM DDR2 modules yesterday for $20/piece.
Heh, yeah, I guess I forgot about that. It's such a habit now to hit Escape immediately when I see the username and password box that I don't even think about it any more. That right there makes it one of the most inconvenient sites I have to visit. At least they do just about everything else right.
I've been using Linux on the desktop since '01, and I can for certain that around 2004 or was when I could visit random sites and have them work without any issues. There are two that I know of that "require" a browser/OS combo, but they let you carry on any way - at your own risk. Of course, they work fine. One is HR Block when filing taxes, the other is CitiCard's virtual/temporary CC# generator webapp.
Nintendo and Sony are based in Japan. No USA == no regulations/pressure to follow GAAP.
Found On Reservation Dump
You're implying that the amount of users a social networking site should have is somehow linear to how many database servers it needs. I have news for you - it doesn't. You also don't mention the roles for the servers, nor the hits per interval, nor even a feature comparison (some may have much harder hitting queries) - and finally, you're outright neglecting to mention hardware. MYB might have 17 quad core, 16x320GB 15k rpm drives compared to facebook's whitebox google model. Your entire post is useless without apples to apples comparisons.
A couple of months ago, salesforce released that their userbase was still 50% IE6:
http://blogs.salesforce.com/user_experience/2008/06/salesforce-and.html
The MAC address is not preserved outside of the local subnet, so unless they had captured packets on her local network (i.e. to here linksys router or CPE cable modem, etc.), the mac address they're picking up would be remarkably similar every time since a TCP/IP packet's source MAC address is always that of the router the packet hit last. It's extremely likely there are at least 5 routers between her computer and the *AA's equipment.
Not just that, but they probably have to format it to a publishable form, as well as proof read, correct and go through all the paperwork to make it so. If you think you can do it faster, I'm sure a clerk of courts job pays somewhere around 12-14$/hour, so be my guest.