I know there have been more or less 100 bots online the past 24 hours, any of those who have been using site wanna share how its experienced now?
Site is considerably faster, but getting user feedback is always best way knowing that its "true"

Tests now show that the way i was already planning on implement two-way-chat will work just fine.
Some technical insight to how it work for those interested, my tcp server right now will execute query's in runtime. By this i mean the moment it receives data from a jMon client its inserted into database, inserts are no issue at all they take up no resources, now over to the part where its quite messy, this is true for both site and my tcp server, they have both been running separate "threads" when doing selects (not really) for every client, they have been querying only last 5 entries for every user. What this means is that under heavy load server was chewing about 400 - 800 querys per second. Not really that hard to achieve, however when tables had millions of entries this gets slow. Since 1 select in a table with a few million records can alone be hundreds of times slower (query time is relative) then it would if i run a cache - archive setup (as it does now). Next on my agenda is running array caching in both my TCP server and on the site. For site its a bit more complicated since it would require a continuously running script. (might setup my tcp as a comet server) Doing array caching it means i run database queries in time intervals lets say every 2 second it would check if array match database on change it would commit changes.