From 12adecf6b445f9fe1beb23874d5bac8401e64812 Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Tue, 17 Jan 2012 15:04:33 +0100 Subject: [PATCH] add some thought --- README | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README b/README index e69de29..e9660fe 100644 --- a/README +++ b/README @@ -0,0 +1,22 @@ +This should become a server that has a dynamic time-sliced part +that updates an internal state all the time. +Clients might connect as they want and get some information +from the server. +The server should scale in two manners. +New instances should be able to handle connection and get +updates about the computed state. +Additionally new instances might hold their own state which +all other instances might update. + +In a first run the state might be something simple as a +matrix where every field hold a unique value. e.g. + + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + ------------- + |1|4|a|j|k|9| + -------------