@@ -1,34 +1,36 @@
 CENTRIFUGE
 ==========
 
-Simple platform for real-time message broadcasting in web applications.
+Simple real-time messaging in web applications.
 
-The main goal of Centrifuge is the same as in [Pusher](http://pusher.com/) or
+The main goal of Centrifuge is the same as of [Pusher](http://pusher.com/) or
 [Pubnub](http://www.pubnub.com/) services. The main difference is that Centrifuge is
-open-source and requires installation (it is worth noting that installation is rather simple).
+open-source and requires installation. Centrifuge is most similar to
+[Faye](http://faye.jcoglan.com/)
 
-It is built on top of [Tornado](http://www.tornadoweb.org/en/stable/) -
+Centrifuge is built on top of [Tornado](http://www.tornadoweb.org/en/stable/) -
 extremely fast and mature Python's async web server.
 
 Centrifuge uses [ZeroMQ](http://www.zeromq.org/) steroid sockets for internal
-communication and publish/subscribe operations. There is an experimental support
+communication and publish/subscribe operations. There is an also support
 for [Redis](http://redis.io/) PUB/SUB, so you can use it instead of ZeroMQ.
 
-For presence and history data Centrifuge utilizes Redis.
-
 To connect to Centrifuge from browser pure [Websockets](http://en.wikipedia.org/wiki/WebSocket)
 or [SockJS](https://github.com/sockjs/sockjs-client) library can be
 used.
 
-Centrifuge comes with administrative web interface to manage project/namespace structure and monitor important
-messages.
+Centrifuge comes with administrative web interface to manage project/namespace
+structure and monitor important messages.
 
 Persistent data (projects, namespaces) by default stored in [SQLite](http://www.sqlite.org/) database.
 But when running Centrifuge instance processes on different machines you should use [MongoDB](http://www.mongodb.org/)
-or [PostgreSQL](http://www.postgresql.org/) backends instead of SQLite for structure management.
+or [PostgreSQL](http://www.postgresql.org/) backends instead of SQLite.
+
+Please,
 
-Please, read the [documentation](https://centrifuge.readthedocs.org/en/latest/), watch [screencast](http://www.youtube.com/watch?v=RCLnCexzfOk)
-and look at [examples](https://github.com/FZambia/centrifuge/tree/master/examples) for more information.
+* read the [documentation](https://centrifuge.readthedocs.org/en/latest/)
+* watch [screencast](http://www.youtube.com/watch?v=RCLnCexzfOk) - rather outdated though.
+* look at [examples](https://github.com/FZambia/centrifuge/tree/master/examples).
 
 
 Main features