Documentation for pulsar 0.9.2. For development docs, go here.

FAQ

This is a list of Frequently Asked Questions regarding pulsar.

Socket Servers

Can I run a web-server with multiple process?

Yes you can, in posix always, in windows only for python 3.2 or above. Check wsgi in multi process.

WSGI Server

Is pulsar WSGI server pep 3333 compliant?

Yes it is, to the best of our knowledge. If you find an issue, please file a bug report.

Is a WSGI response asynchronous?

It depends on the WSGI application serving the request. Blocking application such as django or flask can be made more pulsar-friendly by using the middleware_in_executor() utility as explained in the wsgi tutorial.

Logging

log level

Pulsar uses the log-level setting to control logging level on the command line or on your config <setting_config file:

python script.py --log-level debug

Did you know you can pass several namespaces to --log-level:

python script.py --log-level debug asyncio.warning


Table Of Contents

Previous topic

Design

Next topic

Pulsar Advantage

This Page