I am configuring and building a Magento site and currently receiving out of allowed memory messages like Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 77 bytes)
. Always the amount of attempted memory allocation is very small and it doesn't always occur at the same point (mostly Magento Collection management code and Varien/Object code).
I wonder if this is normal behaviour or that something is not right, because 64 mb for just a client request handling seems quite much. My database size is now about:
* ~2500 products
* ~700 attribute sets
* ~250 attributes which do have over 13,000 options (~25,000 option values)
* eav_entity_attribute is about ~50,000 records
I have the feeling Magento is preloading way too much data from the database and wondered if any of you has had experience with equal problems or an idea what costs so much memory.
Thanks!