From a3dfc4313d34ed72579857750db7eda304dec062 Mon Sep 17 00:00:00 2001 From: Ringo Watanabe Date: Sat, 18 Aug 2018 07:20:25 +0100 Subject: [PATCH] update TODO --- TODO | 9 +++++++++ config.js | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 TODO diff --git a/TODO b/TODO new file mode 100644 index 0000000..bdaf994 --- /dev/null +++ b/TODO @@ -0,0 +1,9 @@ +Server: +!!Move backend call out of request callback for /info!! + +Add UNIX socket listener to node server for daemon communication. +Add option to save/load state of server. + +Client: +Add more aggregate graphs +Add options to enable rolling and purging of session graphs diff --git a/config.js b/config.js index 3668280..5edfff8 100644 --- a/config.js +++ b/config.js @@ -8,8 +8,8 @@ var config = { RTBWCTL_FILENAME: "./backend/rtbwctl.py", BACKEND_SOCKET: "./backend/rtbw.sock", - BUFFER_PURGE_TIME: 300000,//20000,//300000, //5 minutes - SUPERBUFFER_PURGE_TIME: 3000000//3000000 //50 minutes + BUFFER_PURGE_TIME: 600000, //10 minutes + SUPERBUFFER_PURGE_TIME: 86400000 //24 hours }; module.exports = config;