听说innoDB的性能比较好,谢谢大家。

解决方案 »

  1.   

    innoDB 是数据库表的存储引擎,应该不是数据库的版本InnoDb 存储引擎,支持事务,行锁,外键.InnoDb 设计用来处理大数据量时提供最好的
    性能.
    InnoDb 提供自己的缓存(buffer pool) 还缓存数据和索引.innodb 把数据和索引存放
    到表空间(tablespace) ,表空间是几个磁盘文件或者是原是设备文件(raw disk). 它
    不像MyISAM 存储引擎,每个表只是一个文件.(这样在某些系统下最大2G限制). 而Innodb
    没有此限制,可以无限扩展.
    Mysql4.0 的以后版本都支持innodb 存储.创建表
    CREATE TABLE if not exists `Admin_User` (
      `id` int(11) NOT NULL auto_increment, --PRIMARY KEY,
      `livedoorId` varchar(255) NOT NULL default '',
      `password` varchar(255) NOT NULL default '',
      `auth` int(11) default '0',
      PRIMARY KEY  (`id`)     --设定主健
    ) ENGINE=InnoDb
      

  2.   

    http://dev.mysql.com/downloads/mysql/5.0.html
      

  3.   

    谢谢littleboys(飞龙) 的详细回答。
    loveflea(coolwind) ,这个链接是5.0的,对于linux,又有Standard,Max和Debug版本的区别,用在实际系统中的话,是不是Max比较好?这几个版本有什么区别?其中也内含了innoDB引擎,对么?谢谢。解决这个问题就结贴。
      

  4.   

    The *Standard* binaries are recommended for most users The *Max* version includes additional features that have not been exhaustively tested or are not required for general usage. When these features have matured and proven to be stable, they will be incorporated into future releases of the Standard binaries. The *Debug* binaries have been compiled with extra debug information, and are not intended for production use, because the included debugging code may reduce performance. 从上面可以看出,一般来讲,用*Standard*版本比较好。如果有某些特殊的需要,再考虑用*Max*版本。作为产品应用来讲,*Debug*版本是不适合的。