| Name |
Space |
Section |
Page |
Version |
Status |
Curator |
Reviewed |
Author(s) |
| Troubleshooting |
Pylons CookBook |
|
Troubleshooting |
1.0 |
Draft |
Graham Higgins |
False |
[ |
Troubleshooting
Threads
If you suspect a thread-unsafe interaction is causing errors and you're using Paste's HTTP server, put this in your config file to prevent simultaneous requests and see if the problem goes away:
1
2
3 | [server:main]
threadpool_workers = 1
threadpool_spawn_if_under = 1
|
wouldn't this degrade performance?
--alen