I found RedBean today on StackOverflow and was wondering when/whether to use it instead to Doctrine.
I have read a lot about Doctrine and was just starting to use it. Even if it's working now I think it is not really easy to start with. If I compare the documentation (for Doctrine and RedBean) I would prefer RedBean because it is very easy to understand with simple examples. Without trying I can see it will be up and running in 5 minutes.
I guess the down side of RedBean will show up later. Doctrine looks like a well developed tool, seems well test, and feels like the safe choice. I am sure there is no easy answer, but please help me decide which is best for me by providing some Pro's and Con's.
Code examples (Doctrine / Readbean)
// create
$order = new models\Order();
$order = R::dispense('order');
// save
$this->em->persist($order);
$this->em->flush();
R::store($order);
// get row by id
$shop = $this->em->find('models\Shop', $shop_id);
$shop = R::load('shop', $shop_id);
Notice: I switched the accepted answer from hakre to Xerosigma because it gives a better overview. Please notice that hakre's answer provides additional information.
