Commit 54518aef authored by Jacek Furmankiewicz's avatar Jacek Furmankiewicz

url routing, argument extraction and conversion, url caching

parent 0c0f23b4
...@@ -8,7 +8,7 @@ Geared towards creating REST-oriented server platforms (e.g. as a source of data ...@@ -8,7 +8,7 @@ Geared towards creating REST-oriented server platforms (e.g. as a source of data
Tested exclusively on PyPy for maximum performance. Tested exclusively on PyPy for maximum performance.
Example: Example:
^^^^^^^ -------
from corepost.server import CorePost from corepost.server import CorePost
from corepost.enums import Http from corepost.enums import Http
...@@ -31,13 +31,13 @@ Example: ...@@ -31,13 +31,13 @@ Example:
app.run() app.run()
Performance Performance
^^^^^^^^^^^ -----------
Pushing 8,000+ TPS on a simple 'Hello World' app using 'ab -n 100000 -c 200' Pushing 8,000+ TPS on a simple 'Hello World' app using 'ab -n 100000 -c 200'
for benchmarking while running on PyPy 1.6 for benchmarking while running on PyPy 1.6
Plans Plans
^^^^^ -----
* match all the relevant features of the Flask API * match all the relevant features of the Flask API
* integrate twisted.internet.processes in order to scale to multiple CPU cores : http://pypi.python.org/pypi/twisted.internet.processes * integrate twisted.internet.processes in order to scale to multiple CPU cores : http://pypi.python.org/pypi/twisted.internet.processes
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment