Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php ORM - RedBean in production?

Tags:

database

php

orm

I would like to know how many of you are using RedBean ORM in your php production sites and what is your experience with it (reliability, speed, problems (if any),...)?

Thank You.

like image 754
Diablo Avatar asked Jan 11 '11 15:01

Diablo


2 Answers

I wrote RedBean because I was dissappointed in Doctrine. I have used both Propel and Doctrine but I felt unproductive.

We use RedBean for several projects and it performs well. Actually RedBean is not a really 'fat' orm layer, so it's quite easy to optimize (almost all SQL is stored in one class; the query writer). It does not have a query parser, a customized SQL language or a query builder. If you want to improve performance even more you can decide to use plain SQL instead and use the convertToBeans-option afterwards.

like image 53
Gabor de Mooij Avatar answered Oct 30 '22 15:10

Gabor de Mooij


Heej, I am using it in an website I am working on. I have integrated it with CodeIgniter and it works perfect. I haven't anything I couldn't do with it.

Karens

like image 34
Karens Avatar answered Oct 30 '22 14:10

Karens