Skip to content

Commit 083babd

Browse files
committed
release 0.0.309 (#40)
* update README.md --------- Co-authored-by: nggit <[email protected]>
1 parent 1399473 commit 083babd

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ And other use cases…
3737
## Features
3838
Tremolo is only suitable for those who value [minimalism](https://en.wikipedia.org/wiki/Minimalism_%28computing%29) and stability over features.
3939

40-
With only 3K lines of code, with no dependencies other than the [Python Standard Library](https://docs.python.org/3/library/index.html), it gives you:
40+
With only **3k** lines of code, with no dependencies other than the [Python Standard Library](https://docs.python.org/3/library/index.html), it gives you:
4141

4242
* HTTP/1.x with [WebSocket support](https://nggit.github.io/tremolo-docs/websocket.html)
4343
* Keep-Alive connections with [configurable limit](https://nggit.github.io/tremolo-docs/configuration.html#keepalive_connections)
@@ -136,10 +136,8 @@ python3 -m tremolo --log-level ERROR example:app
136136

137137
You will find that Tremolo is reasonably fast.
138138

139-
What's interesting is that this may become different when [CPython becomes faster](https://devblogs.microsoft.com/python/python-311-faster-cpython-team/),
140-
or another faster Python implementation comes along.
141-
142-
All I can say is that Tremolo is built with simplicity in mind, so performance will naturally follow.
139+
However, it should be noted that bottlenecks often occur on the application side.
140+
Which means that in real-world usage, throughput reflects more on the application than the server.
143141

144142
## Misc
145143
Tremolo utilizes `SO_REUSEPORT` (Linux 3.9+) to load balance worker processes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='tremolo',
10-
version='0.0.308',
10+
version='0.0.309',
1111
license='MIT',
1212
author='nggit',
1313
author_email='[email protected]',

tremolo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.0.308'
1+
__version__ = '0.0.309'
22

33
from .tremolo import Tremolo # noqa: E402
44
from . import exceptions # noqa: E402,F401

0 commit comments

Comments
 (0)