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);
link|improve this question

6  
Can you please explain why you vote for close? There are so many questions here asking for the comparing of different tools. So what I am doing wrong here? – PiTheNumber Nov 9 '11 at 10:46
1  
RedBean: 1 Autor + some small commits, Doctrine: 5 in Core Team + 11 Contributers + Companies. – PiTheNumber Nov 9 '11 at 15:41
1  
From the FAQ: "What kind of questions should I not ask here? [...] open-ended questions diminish the usefulness of our site". This is a question that solicits opinion, it is open-ended. – netcoder Nov 12 '11 at 23:18
2  
mh I see. But I don't want to know what someone likes better. I want to know fakts. What is the difference and when to use what. I guess I should have made that more clear. Thanks. – PiTheNumber Nov 13 '11 at 9:52
1  
some good post in this question stackoverflow.com/questions/7765070/redbean-orm-perfomance – Jaison Justus Nov 18 '11 at 10:45
show 1 more comment
feedback

3 Answers

up vote 20 down vote accepted
+50

I think you should make yourself a bit comfortable with the patterns behind those two database abstraction layers.

First of all both deal with relational databases. That's common between them. Both offer you a layer to access the data inside your program w/o the need to run bare SQL commands, both are offering a persistence layer.

For differences, I would consider that:

However this must not say much about your use-case. For example if the database structure already exists, the use of the two libraries might differ.

So first look what you actually need. How is your application designed? If it has lightweight Transaction Scripts and your database is not very complex, the RedBean sounds useful as it looks like from your question that you think it does the job and you're positive about it. It's not productive if you use a library you find hard to work with.

On the other hand if you're using a Domain Model in your application, Doctrine sounds more fitting to me.

I think both components are well developed, so you will get much in either case.

Another point I would make up my mind is about how you deal with risks and problems. For example, you can not yet see into the future into which problems you will run with the persistence layer of your application.

Instead of thinking what might eventually go wrong already in the design phase, it's often better to start bringing the components together in small iterations so that you know that and how the persistence layer is working with your application. And you know the problems then which is much more helpful to deal with them.

link|improve this answer
Can you please explain why is RedBean not da Data Mapper? If I look at R::store($book);. R is the mapper and $book is the data model. See also Models and FUSE. – PiTheNumber Nov 9 '11 at 13:15
I didn't say it is not but what I think the one is more of than the other. See as well redbeanphp.com/community/wiki/index.php/Unit_of_Work – hakre Nov 9 '11 at 14:59
@hakre - fantastic answer. – Flukey Nov 9 '11 at 15:42
Yes, it is a very good answer. Thanks for that. But I have the feeling there is more to say about it. Like I just found out RedBean has just one author with makes it a bit risky. So I will keep the question open for a little while. – PiTheNumber Nov 9 '11 at 16:11
It does not depend how many authors a code has, but how good it's written. It's hard to say, what matches best your exact expectations, as you're writing the application not me ;). I would prefer the simpler approach over a more complex one (you still need to define what's more complex for you), you might need to write a little bit more in your Transaction Scripts but if the application is not that complex in itself, that's normally faster. – hakre Nov 13 '11 at 9:48
show 2 more comments
feedback

RedBeanPHP can work with domain models; beans are on-the-fly connected to models. For instance let's say we have a page bean:

$page = R::dispense('page');
R::store($page);

If we now make a Page Model later on, RedBeanPHP will find the model and you will be able to add hooks for store (update) and other R:: like methods:

Model_Page extends RedBean_SimpleModel {
    public function update() { ... gets called by R::store... }
} 

Even custom methods are routed to the model:

$page->addElement();

So you can have a domain model like in Doctrine but you don't have to write the models upfront, you can write the models afterwards.

Also, using the ModelFormatter class you can tell RedBeanPHP how it can find the models your beans belong to, if you want to use different naming conventions for instance.

More information about FUSE: http://www.redbeanphp.com/manual/how_fuse_works

link|improve this answer
8  
Gabor de Mooij is the developer of RedBeans. – PiTheNumber Dec 1 '11 at 6:41
feedback

adding doctrine to existing code will involve either writing objects for each table that directly maps to the database table. I'm sure there is a tool to do this but its worth thinking about. There is also a lot of tutorials on doctrine's website.

I'm not sure on your experience in php, but it may be worth considering using both and deciding which suits your needs best. It may take longer but you will learn a lot more.

I recently attended a talk on doctrine and the things that are said are really good. The concept on using objects rather than querying the database can only be a good thing in large programs.

I have never used Redbean but looking over the docs the concept of not requiring a model is pretty nice. especially if you are adding it to existing code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.