Is there a way to share data between apache modules?
Example:
mod_a
makes a calculation and gets some number as a result.mod_b
makes another calculation and I need to sum it with the result frommod_a
.
What is the way to do it?
I've tried to pass it through r->notes
table, but with no success. The data from both modules is seen in the log, but they don't see each others data.
P.S. mod_b
always do the job after mod_a
had finished processing within a single request.