Osama Yawar
Osama Yawar

Reputation: 49

Difference between MongoDB drivers

What is the difference between MongoDB database driver and MongoDB driver for PHP.

I tried running pecl search mongo and got these two results.

Package Stable/(Latest) Local
mongo   1.6.13 (stable)       MongoDB database driver 
mongodb 1.1.5 (stable)        MongoDB driver for PHP

The only thing i need to do is update my PHP drivers for MongoDB.

Upvotes: 0

Views: 227

Answers (1)

potfur
potfur

Reputation: 171

MongoDB should be used instead of deprecated Mongo. MongoDB supports new features from version 3.0.

Older database driver was stuck on version 2.6 and will now raise deprecation errors.

Upvotes: 1

Related Questions