在Joyent的技术文档中,Node.js模块列表:https://github.com/joyent/node/wiki/modules#database
node.js支持如下Database:
IBM DB2
MS SQL Server
PostgreSQL
MySQL
SQLite
Oracle
NoSQL and Key/Value
Mongo
Hive
Redis
CouchDB
Other NoSQL implementations
Miscellaneous and multiple DB
在Joyent的技术文档中,Node.js模块列表:https://github.com/joyent/node/wiki/modules#database node.js支持如下Database: IBM DB2 MS SQL Server PostgreSQL MySQL SQLite Oracle NoSQL and Key/Value Mongo Hive Redis CouchDB Other NoSQL implementations Miscellaneous and multiple DB
一般用mysql就能处理大量的问题,支持Transaction和Caching等。Node.js可以使用node-mysql模块来访问mysql。
谢谢了