wobscale / EuIrcBot

A featureful nodejs irc bot
MIT License
15 stars 15 forks source link

Datastore #8

Open euank opened 10 years ago

euank commented 10 years ago

Each module handler should provide an easy way for a module to sore data. It should make it easy to store key-value data or just plain blobs of raw data. The datastore itself should all exist in a canonical location which can be backed up easily. Each module gets its own area of course.

euank commented 10 years ago

One data store added. Just blobs of raw data (files).

Next should be key-value and sql I think

cbgbt commented 10 years ago

Do any existing modules use this feature? Looking for examples.

euank commented 10 years ago

See scrollback. Only one right now.

There are plans for adding key-value storage as core and SQL as a module, as mentioned above.