william-os4y.livejournal.com
I'm happy to announce the release of Fapws-0.8.1. This release fix… - William's journal
http://william-os4y.livejournal.com/7769.html
Mon, Nov. 22nd, 2010, 10:30 pm. I'm happy to announce the release of Fapws-0.8.1. This release fix several fixes: datetime: setup.py, . On the other hand I'm really happy to see more and more positive. Feedbacks about Fapws ;-). Just to point one, I would mention a public website:. Wwwhannut-chapter.be running Fapws-0.8 since 60 days today ;-). Moreover, this site is directly connected to Internet (no proxy). Since 60 days, no issues, no memory leaks! Visit us on www.fapws.org.
william-os4y.livejournal.com
Release 0.6 of Fast Asynchronous Python Wsgi Server - William's journal
http://william-os4y.livejournal.com/7609.html
Tue, Jul. 27th, 2010, 10:27 am. Release 0.6 of Fast Asynchronous Python Wsgi Server. This new Fapws3 release fixes several bugs and bring the new timers feature. Http:/ pypi.python.org/pypi/fapws3/. As you can see in the sample, timers allow you to execute a recurrent tasks with a predefined frequency. I'm using it in the sample to show you the performance impact it can has on a commit. This is just a sample and I know that this will not fit every cases. This can be generic docs, howtos, trips, . I have ...
wsgi.readthedocs.io
Servers which support WSGI — WSGI.org
http://wsgi.readthedocs.io/en/latest/servers.html
Servers which support WSGI. This is an alphabetic list of WSGI servers. In some cases these are WSGI-only systems, in other cases a package includes a server. Please feel free to expand the list or descriptions. Direct links to documentation on how to use the server is especially appreciated. A threaded/forking WSGI server implemented in C (it embeds a Python interpreter to run the actual application). It communicates with the web server via AJP, and is known to work with mod jk. And mod proxy ajp. Corou...
charlesbrandt.com
charlesbrandt.com:
http://www.charlesbrandt.com/tags/web_server.html
Https:/ www.google.com/search? Q=uwsgi&oq=uwsgi&aqs=chrome.69i57.1498j0j4&sourceid=chrome&espv=210&es sm=91&ie=UTF-8#es sm=91&espv=210&q=uwsgi multiple applications. Https:/ github.com/unbit/uwsgi-docs/blob/master/StaticFiles.rst. Http:/ projects.unbit.it/uwsgi/wiki/VirtualHosting. Http:/ uwsgi-docs.readthedocs.org/en/latest/. Http:/ uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html. Http:/ uwsgi-docs.readthedocs.org/en/latest/Emperor.html. Https:/ www.google.com/search? Q=gevent websockets&oq=gev...
github.com
GitHub - william-os4y/fapws3: Fast Asynchronous Python Web Server (based on libev)
https://github.com/william-os4y/fapws3
Fast Asynchronous Python Web Server (based on libev). Use Git or checkout with SVN using the web URL. Mar 8, 2015. No more needed for python-2.7. Failed to load latest commit information. Fix a core dump on OpenBSD-5.6. Mar 8, 2015. Added hello unixsocket sample. Dec 16, 2011. No more needed for python-2.7. Mar 8, 2015. Dec 26, 2008. Jan 9, 2012. Add the license terms. Nov 1, 2009. Fix a bug for pypi generator. Nov 20, 2010. Apr 14, 2012. Add a TODO file. Feb 24, 2011. Eggify the setup files. Dec 26, 2008.
william-os4y.livejournal.com
Bux fixe in Fapws3 - William's journal
http://william-os4y.livejournal.com/9106.html
Mon, Mar. 9th, 2015, 08:32 pm. Bux fixe in Fapws3. First of all Fapws3 is not dead :-). I read some people saying that the project is no more updated and thus, should be dead. This is not true! The project simply correspond to the needs. At least I've not received remarks. On my side, I saw Fapws3 servers facing internet with an uptime of 200 days. But that's not the subject of this post. By running on OpenBSD-5.6, I've discovered a bug. The fix has just been poushed to GitHub.
william-os4y.livejournal.com
Release of FAPWS3-0.9 - William's journal
http://william-os4y.livejournal.com/7972.html
Sat, Jan. 22nd, 2011, 06:17 pm. Release of FAPWS3-0.9. I'm really happy to announce a new release of Fapws3: 0.9. This release contains several fixes and some interesting new features:. Avoid a crash in case you forget the "return" command in your callback method. A better django adaptor (look in the samples). A session object which allow you to associate a python object. Typically a dictionary) to a session ID. A cookie parser (in base.py). Better management of connections broken by the client. To optim...
william-os4y.livejournal.com
Python tests used to compare different OSes. - William's journal
http://william-os4y.livejournal.com/8436.html
Sat, Mar. 26th, 2011, 11:41 am. Python tests used to compare different OSes. A bit like Jaime has did with Ruby ( http:/ linbsd.org/. I've used the python test's scripts to compare different OSes. All OSes are installed on the same machine (each is own partition) with default install parameters. All Hardware elements remains the same during the tests. The machine is a 4 years old PC running AMD CPU 2.4GHZ with 2GB Ram. Tests were made with the latest Python2 release: 2.7.1. Line 581: print test times.
nichol.as
Nicholas Piël » Benchmark of Python Web Servers
http://nichol.as/benchmark-of-python-web-servers
Benchmark of Python WSGI Servers. March 15, 2010. It has been a while since the Socket Benchmark of Asynchronous server. That benchmark looked specifically at the raw socket performance of various frameworks, which was being benchmarked by doing a regular HTTP request against the TCP server. The server itself was dumb and did not actually understand the headers being send to it. In this benchmark I will be looking at how different WSGI. However, there are some differences:. Def application(environ, start...
bottlepy.org
Deployment — Bottle 0.13-dev documentation
http://www.bottlepy.org/docs/dev/deployment.html
Function, when called without any parameters, starts a local development server on port 8080. You can access and test your application via http:/ localhost:8080/. If you are on the same host. To get your application available to the outside world, specify the IP of the interface the server should listen to (e.g. Run(host='192.168.0.1'). Or let the server listen to all interfaces at once (e.g. Run(host='0.0.0.0'). Listen to HTTP requests on all interfaces. Forking) servers are not limited by the GIL and u...