Re: [pylons-discuss] ZODB debugging

2024-02-11 Thread Adam Groszer
yramid >> and ZODB, and which is including a ZODB browser package. >> But it is actually lacking documentation, and including a complete >> framework is probably not what you are looking for just to debug an app! :/ >> >> Best regards, >> Thierry >> -- >

[pylons-discuss] ZODB debugging

2024-02-11 Thread Adam Groszer
Hi, What are my best chances to debug a pyramid app using ZODB? I'm looking for something like zodbbrowser for ZTK is, but for pyramid. thanks -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving

Re: [pylons-discuss] Creating sub-processes from Pyramid application

2021-01-06 Thread Adam Groszer
, so I brought my entire Pyramid application over to my Celery worker. >>> Having a request object available in a Celery task is incredibly >>> convenient, and my code is much tidier not having to tiptoe around the >>> differences in environments. >>> >>>

Re: [pylons-discuss] Re: Creating sub-processes from Pyramid application

2021-01-06 Thread Adam Groszer
Hi, Yeah celery is the way to go. There's https://github.com/sontek/pyramid_celery to check out. Some things to keep in mind is, you'll need a shared DB, good-old ZODB with filestorage is not enough, because more processes will need to have access. Do not store valuable data in the celery queue,