Hi ALL
I need to verify a point.
The way code is organized in my company system is we include everything (all functions and classes files) in each request which is a several MB of code (life as programmer are a bit easier).
We use APC so all the code is being included from memory (We use full path to avoid overhead here).
I have a feeling that although we use APC, the Apache instance gets to be too bloated then how it would have been if we would only include the files we need to include in each request,
Say, using __autoload.
Does someone knows if this is the case, or not?
Thanks
Itay