I have application which has core website, api and admin area. I wanted to know is it bad idea to have everything in one app or should I create different Symfony2 project or should I split them into different kernels?
I'm not sure if adding lots of bundles on same kernel will effect performance a lot or is just a little bit, which does not matter?
Following are options:
- keep everything on same kernel, it wont make much difference
- have multiple kernel for different part of application (api, admin and core website)
- create different Symfony2 project for admin area and api.
- or your wise words :)