Skip to main content

Javier Neira's Library tagged mysql   View Popular

09 Dec 09

Accessing a MySQL database from Node.JS « Devthought

connection.query("SELECT * FROM TABLE").addCallback(function(result){
for (var i = 0, l = result.ROWS.length; i < l; i++){
var row = result.ROWS[i];
// do something with the data
}
});

devthought.com/...g-a-mysql-database-from-nodejs - Preview

mysql access javascript slayer node.js

15 Sep 09

MySQL :: An Introduction to Database Normalization

  • The first normal form (or 1NF) requires that the values in each column of a table are atomic. By atomic we mean that there are no sets of values within a column
  • One method for bringing a table into first normal form is to separate the entities contained in the table into separate tables
  • 12 more annotations...
10 Sep 09

How FriendFeed uses MySQL to store schema-less data - Bret Taylor's blog

  • making schema changes or adding indexes to a database with more than 10 - 20 million rows completely locks the database for hours at a time. Removing old indexes takes just as much time, and not removing them hurts performance because the database will continue to read and write to those unused blocks on every INSERT, pushing important blocks out of memory
  • We can change the "schema" simply by storing new properties.
  • 3 more annotations...
1 - 5 of 5
Showing 20 items per page

Highlighter, Sticky notes, Tagging, Groups and Network: integrated suite dramatically boosting research productivity. Learn more »

Join Diigo