-
zope-zc.resumelb-0.7.1-1.lbn13.noarch
This package provides a load balancer for WSGI applications that sorts requests into request classes and assigns requests of a given class to the same workers.
The load balancer can benefit you if you have an application that:
has too much load (or is too slow) to be handled by a single process,
has a working set that is too large to fit in the caches used by your process, and
there is a way to classify requests so that there is little overlap in the working sets of the various classes.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.resumelb-0.7.1-1.lbn19.noarch
This package provides a load balancer for WSGI applications that sorts requests into request classes and assigns requests of a given class to the same workers.
The load balancer can benefit you if you have an application that:
has too much load (or is too slow) to be handled by a single process,
has a working set that is too large to fit in the caches used by your process, and
there is a way to classify requests so that there is little overlap in the working sets of the various classes.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.resumelb-0.7.1-1.lbn25.noarch
This package provides a load balancer for WSGI applications that sorts requests into request classes and assigns requests of a given class to the same workers.
The load balancer can benefit you if you have an application that:
has too much load (or is too slow) to be handled by a single process,
has a working set that is too large to fit in the caches used by your process, and
there is a way to classify requests so that there is little overlap in the working sets of the various classes.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.sourcefactory-0.7.0-2.lbn13.noarch
An easy way to create custom Zope 3 sources.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.sourcefactory-0.7.0-2.lbn25.noarch
An easy way to create custom Zope 3 sources.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.sourcefactory-0.7.0-2.lbn25.noarch
An easy way to create custom Zope 3 sources.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.testbrowser-1.0.0a5-3.lbn13.noarch
Programmable web browser for functional black-box testing of web applications
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.testbrowser-1.0.0a5-3.lbn19.noarch
Programmable web browser for functional black-box testing of web applications
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.testbrowser-1.0.0a5-4.lbn25.noarch
The zc.testbrowser package provides web user agents (browsers) with
programmatic interfaces designed to be used for testing web applications,
especially in conjunction with doctests.
There are currently two type of testbrowser provided. One for accessing web
sites via HTTP (zc.testbrowser.browser) and one that controls a Firefox web
browser (zc.testbrowser.real). All flavors of testbrowser have the same API.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.thread-0.1.0-1.lbn13.noarch
The thread-creation API provided by the Python threading module is annoying. :)
This package provides a very simple thread-creation API that:
Makes threads daemonic and allows daemonicity to be passed to the constructor. For example:
zc.thread.Thread(mythreadfunc)
Starts a daemonic thread named 'mythreadfunc' running mythreadfunc.
Allows threads to be defined via decorators, as in:
import zc.thread
@zc.thread.Thread
def mythread():
...
In the example above, a daemonic thread named mythread is created and started. The thread is also assigned to the variable mythread.
You can control whether threads are daemonic and wether they are started by default:
import zc.thread
@zc.thread.Thread(daemon=False, start=False)
def mythread():
...
After a thread finishes, you can get the return value of the target function from the thread's value attribute, or, if the function raises an exception, you can get the exception object from the thread's exception attribute. (This feature was inspired by the same feature in gevent greenlets.)
There's also a Process constructor/decorator that works like Thread, but with multi-processing processes, and without the value and exception attributes.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13