Passa ai contenuti principali

Post

Visualizzazione dei post da ottobre, 2007

Tipi in Java

I limiti dei tipi in Java: byte , da -128 a 127 (compresi) short , da -32768 a 32767 (compresi) int , da -2147483648 a 2147483647 (compresi) long , da -9223372036854775808 a 9223372036854775807 (compresi) char , da '\u0000' a '\uffff', cioè da 0 a 65535 (compresi) vedi... http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html enjoy -m

Tipi di tabella in MySQL

[under construction] MyISAM is a disk based storage engine. Aiming for very low overhead, it does not support transactions. InnoDB is also disk based, but offers versioned, fully ACID transactional capabilities. InnoDB requires more disk space than MyISAM to store its data, and this increased overhead is compensated by more aggressive use of memory caching, in order to attain high speeds. Memory (formerly called "HEAP") is a storage engine that utilizes only RAM. Special algorithms are used that make optimal use of this environment. It is very fast. NDB , the MySQL Cluster Storage engine, connects to a cluster of nodes, offering high availability through redundancy, high performance through fragmentation (partitioning) of data across multiple node groups, and excellent scalability through the combination of these two. NDB uses main-memory only, with logging to disk. Vedi... http://dev.mysql.com/tech-resources/articles/storage-engine/part_1.html