Node & Redis: Crucial Design Issues in Production Mode

Posted by Ali on Stack Overflow See other posts from Stack Overflow or by Ali
Published on 2012-11-26T20:18:30Z Indexed on 2012/12/20 11:03 UTC
Read the original article Hit count: 232

This question is a hybrid one, being both technical and system design related. I'm developing the backend of an application that will handle approx. 4K request per second.

We are using Node.js being super fast and in terms of our database struction we are using MongoDB, with Redis being a layer between Node and MongoDB handling volatile operations.

I'm quite stressed because we are expecting concurrent requests that we need to handle carefully and we are quite close to launch. However I do not believe I've applied the correct approach on redis.

I have a class Student, and they constantly change stages(such as 'active', 'doing homework','in lesson' etc. Thus I created a Redis DB for each state. (1 for being 'active', 2 for being 'doing homework'). Above I have the structure of the 'active' students table;

xa5p -> JSON stringified object #1
pQrW -> JSON stringified object #2
active_student_table -> {{studentId:'xa5p'}, {studentId:'pQrW'}}

Since there is no 'select all keys method' in Redis, I've been suggested to use a set such that when I run command 'smembers' I receive the keys and later on do 'get' for each id in order to find a specific user (lets say that age older than 15). I've been also suggested that in fact I used never use keys in production mode.

My question is, no matter how 'conceptual' it is, what specific things I should avoid doing in Node & Redis in production stage?. Are they any issues related to my design? Students must be objects and I sure can list them in a list but I haven't done yet. Is it that crucial in production stage?

© Stack Overflow or respective owner

Related posts about Performance

Related posts about node.js