mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-19 21:01:56 +00:00
Merge tag '0.6.3' into develop
Version 0.6.3
This commit is contained in:
commit
31d74c114f
3 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue