This still mentioned asynchat, updated now that we're using Twisted.

This commit is contained in:
Greg Taylor 2008-06-15 02:48:21 +00:00
parent 3ad6a78281
commit 7f895133ec

7
ABOUT
View file

@ -32,13 +32,12 @@ containing the SQL information.
How it all Works How it all Works
---------------- ----------------
Python (Including the SQL driver of your choice) Python (Including the SQL driver of your choice)
|-asynchat (included with Python2) |-Twisted (http://twistedmatrix.com)
|-SQL (MySQL, SQLite, Postgresql) |-SQL (MySQL, SQLite, Postgresql)
|-Django (http://djangoproject.com) |-Django (http://djangoproject.com)
Evennia is built on top of asynchat, an asynchronous TCP conversation/chat Evennia is built on top of Twisted, a networking engine that handles a lot
library. This makes the actual socket/connection handling an absolute of the guts and lower-level socket stuff for us.
no-brainer.
Serving as our storage medium, SQL is one of the more important and unique Serving as our storage medium, SQL is one of the more important and unique
features of the codebase. It allows for very simple code in many cases, and features of the codebase. It allows for very simple code in many cases, and