Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CUBRID database

I have received a message about CUBRID database they said that it's better than MySQL in performance, so any one heard about it.

Is that correct

Regards

like image 720
Motasem Avatar asked Feb 07 '12 12:02

Motasem


1 Answers

I use CUBRID in most of my projects. The idea of being "better than MySQL", I think, depends on the situation, on the needs of your application. For some CUBRID is really nice, for some MySQL, or some other one. For example, CUBRID has very nice features optimized for Social Networking Services where you have heavy traffic often on one page, use lots of indexes, and take advantage of covering index. They provide some nice examples how to design your database schema and how to tune queries to obtain the best performance (link).

What's your case? If you expect simultaneously several hundred users who generate some thousands of new records every day, CUBRID can easily handle all these. This is what database systems are created for.

You should also consider the environment you are developing in. Is your app developed on PHP, Python, or what? We use PHP and Java on our sites. CUBRID has many Drivers. I believe you can find the necessary driver on their site.

You should also look at the community support. If you have some questions or issues with their database, it's often faster to directly write on their Q&A site or forum.

like image 171
Eye Avatar answered Oct 02 '22 02:10

Eye