The problem is that PHP has no garbage collector. Once allocated all propel objects stay in memory. And propel has tons of them. The last time I had to load I built my load script by hand, squeezing out everything which was not needed I set the limit to 1gb and after a long time i could import it. Other solutions are to split the import into multiple command line invokations. But this will only work as long as you do not have a FK relation between the objects
Good luck Fabian PS: ORM is not the right tool for data dumping, and loading or migration --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
