在数据库的NodeJS会话支持/快递(Database session support in nod

2019-07-28 23:22发布

是否expressjs /拥有的NodeJS支持(通过一个模块?)对数据库会话? 我来自PHP /笨的世界,我很享受存储在MySQL数据库表的会话数据的功能。

这是与方法网络的NodeJS应用程序中使用?

Answer 1:

是。

Redis的

  • https://github.com/visionmedia/connect-redis

MySQL的

  • https://github.com/mren/connect-session-mysql失效链接
  • https://github.com/CarnegieLearning/connect-mysql-session老,不支持
  • https://github.com/chill117/express-mysql-session

PostgreSQL的

  • https://github.com/jebas/connect-pg

MongoDB的

  • https://github.com/kcbanner/connect-mongo
  • https://github.com/bartt/connect-session-mongo
  • https://github.com/donpark/session-mongoose
  • https://github.com/masylum/connect-mongodb

Memcached的

  • https://github.com/balor/connect-memcached

CouchDB的

  • https://github.com/tdebarochez/connect-couchdb
  • https://github.com/eldios/connect-cradle

波纹

  • https://github.com/frank06/connect-riak

SQLite的

  • https://github.com/tnantoka/connect-sqlite
  • https://github.com/pkrumins/supermarket-cart

基于文件的

  • https://github.com/odogono/connect-session-file
  • https://github.com/tnantoka/connect-fs

京都柜

  • https://github.com/kazupon/connect-kyoto

天蓝

  • https://github.com/pofallon/connect-bluesky

nStore

  • https://github.com/creationix/nstore-session

节点脏

  • https://github.com/mmichelli/connect-dirty

VOC(?)

  • https://github.com/triAGENS/SessionVoc-Connect.js

这是实现自己的非常简单, 看文档这里 。



文章来源: Database session support in nodejs/express