-
Notifications
You must be signed in to change notification settings - Fork 450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CPU activity when idle #270
Comments
if you're running it by itself, it uses python stdlib BaseHttpServer, which is probably the culprit. Use a dedicated WSGI HTTP server like uwsgi or Gunicorn. |
according '/usr/lib/python2.7/site-packages/radicale/init.py' I guess radicale uses 'wsgiref.simple_server'. from wsgiref.simple_server import make_server, demo_app the load is 0 when idle. |
@deronnax I suppose you're serving more than one request at a time? This can lead to data corruption if you're using the filesystem storage (and possibly multifilesystem too). |
many per seconds but in read only, no modifications are pushed to the On Fri, Aug 21, 2015 at 11:29 PM, Markus Unterwaditzer <
|
This should be resolved by #353 |
Closed by merging #353. |
radicale has some CPU activity when in idle state (no clients connected).
(powertop shows about 23 Events/s and a few o/oo of CPU load.
This is not really a big problem but it consumes a bit of battery when used on a notebook.
Matthias
The text was updated successfully, but these errors were encountered: