Merge tag '0.6.3' into develop

Version 0.6.3
This commit is contained in:
Tyson Clugg 2015-05-21 12:56:57 +10:00
commit 31d74c114f
3 changed files with 6 additions and 2 deletions

View file

@ -1,6 +1,10 @@
Change Log
==========
0.6.3
-----
* Refactor pub/sub functionality to fix support for `removed` messages.
0.6.2
-----
* Bugfix issue where DDP connection thread stops sending messages after

View file

@ -13,7 +13,7 @@ Scalability
-----------
All database queries to support DDP events are done once by the server instance that has made changes via the Django ORM. Django DDP multiplexes messages for active subscriptions, broadcasting an aggregated change message on channels specific to each Django model that has been published.
Peer servers subscribe to aggregate broadcast events only for channels (Django models) that their connected clients subscribe to. The aggregate events received are de-multiplexed and dispatched to individual client connections. No additional database queries are required for de-multiplexing or dispatch by peer servers.
Peer servers subscribe to aggregate broadcast events which are de-multiplexed and dispatched to individual client connections. No additional database queries are required for de-multiplexing or dispatch by peer servers.
Limitations

View file

@ -5,7 +5,7 @@ from setuptools import setup, find_packages
setup(
name='django-ddp',
version='0.6.2',
version='0.6.3',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',