Memory DB for use in nodejs?

Anybody know of a lightweight memory database , that can be used with Node.js?

I don't want the 'weight' of (great) solutions like Mongo or Couch. A simple, in memory JS database with the capability to persist to disk as a file would be enough. I would only use it to store small amounts of data.

Redis? Or how about just persisting JS vars/arrays, etc?