Re: [Rusonyx #1409891]: Re: Enquiry about mod_perl project state

2015-08-14 Thread Alexandr Evstigneev
Please, remove russian ISP address (supp...@rusonyx.ru) from the thread. 14 августа 2015 г., 20:52 пользователь Rusonyx Support Team < supp...@rusonyx.ru> написал: > Randolf Richardson, > > Вы написали в компанию Русоникс и это письмо является автоматическим > подтверждением того, что Ваша заявка

Re: mod_perl for multi-process file processing?

2015-02-02 Thread Alexandr Evstigneev
Pre-loading is good, but what you need, I belive, is Storable module. If your files contains parsed data (hashes) just store them as serialized. If they containing raw data, need to be parsed, you may pre-parse, serialize it and store as binary files. Storable is written in C and works very fast.

Re: mod_perl2: 304 (not modified) and custom headers

2014-11-12 Thread Alexandr Evstigneev
h, so i'm not > sure that this is related to your problem or not. I don't have a box around > with a recent setup to test against at the moment. > > Adam > > > > On 14-11-12 12:47 PM, Alexandr Evstigneev wrote: > >> Made a test script: >> >> =

Re: mod_perl2: 304 (not modified) and custom headers

2014-11-12 Thread Alexandr Evstigneev
== And if you set status to 200 - get both headers. 2014-11-12 19:45 GMT+03:00 Adam Prime : > Can we see the code you're running into this issue with? It sounds like > confusion between $r->headers_out and $r->err_headers_out to me. > > Adam > > > On 14-11-12

mod_perl2: 304 (not modified) and custom headers

2014-11-12 Thread Alexandr Evstigneev
1. Problem Description: It seems, that if I set status to 304, all custom headers being ignored and not sent to to the client. I'm making cross-domain ajax script and it should pass Access-Control-Allow-Origin even on 304 response. Works fine if data been modified but 304 response has no my header