So I'm trying to get the first-project example working, and I've installed the latest redis, mongodb, and derby.js. Everything seems to install fine, the mongo-db and redis services started up after install, and I create the first-project example. When I try to add something to the list on the example page, nothing happens, and then when I refresh the page, I get this:
> ./node_modules/coffee-script/bin/coffee server.coffee
Master pid 10884
Rollback a create from state ready
/home/william/first-project/node_modules/redis/index.js:516
throw callback_err;
^
Error: ERR unknown command 'evalsha'
at ReplyParser.<anonymous> (/home/william/first-project/node_modules/redis/index.js:263:27)
at ReplyParser.EventEmitter.emit (events.js:95:17)
at ReplyParser.send_error (/home/william/first-project/node_modules/redis/lib/parser/javascript.js:296:10)
at ReplyParser.execute (/home/william/first-project/node_modules/redis/lib/parser/javascript.js:181:22)
at RedisClient.on_data (/home/william/first-project/node_modules/redis/index.js:488:27)
at Socket.<anonymous> (/home/william/first-project/node_modules/redis/index.js:82:14)
at Socket.EventEmitter.emit (events.js:95:17)
at Socket.<anonymous> (_stream_readable.js:736:14)
at Socket.EventEmitter.emit (events.js:92:17)
at emitReadable_ (_stream_readable.js:408:10)
at emitReadable (_stream_readable.js:404:5)
at readableAddChunk (_stream_readable.js:165:9)
at Socket.Readable.push (_stream_readable.js:127:10)
at TCP.onread (net.js:526:21)
I tried reinstallling Redis again to see if that was the problem, but I still get the same error. Any ideas?