JavaScript - Table of Contents - 0 views
QuirksMode Resources - 0 views
Joe Gregorio | BitWorking | ETech '07 Summary - Part 2 - MegaData - 0 views
-
the limits you need to put on yourself when storing a billion rows in a database, and they included: no joins, no transactions, no stored procedures, and no triggers.
-
Joshua has similar suggestions from his experience building del.icio.us: no joins, no transactions, no autoincrement
-
BigTable, Google's column-based store with no transactions
- ...4 more annotations...
When Not to Normalize your SQL Database - SWiK - 0 views
-
With the above design, it takes six SQL Join operations to access and display the information about a single user. This makes rendering the profile page a fairly database intensive operation which is compounded by the fact that profile pages are the most popular pages on social networking sites.
-
Database denormalization is the kind of performance optimization that should be carried out as a last resort after trying things like creating database indexes, using SQL views and implementing application specific in-memory caching. However if you hit massive scale and are dealing with millions of queries a day across hundreds of millions to billions of records or have decided to go with database partitioning/sharding then you will likely end up resorting to denormalization
-
Denormalization means that you you are now likely to deal with data inconsistencies because you are storing redundant copies of data and may not be able to update all copies of a column value simultaneously when it is changed for a variety of reasons. Having tools in your infrastructure to support fixing up data of this sort then become very important.
Servlet and JSP performance tips - 1 views
armstrong on software: Scalable fault-tolerant upgradable systems Part 1 - 0 views
What about Sun embracing JavaScript? - 0 views
-
There's a lot of work being done by the Mozilla foundation and Adobe to integrate a killer JavaScript interpreter into both Flash and Firefox using Adobe's Tamarin engine
SQL Server 7.0: System Error Messages - 0 views
« First
‹ Previous
41 - 60 of 97
Next ›
Last »
Showing 20▼ items per page