What php framework works best with NoSQL databases like Cassandra?

Yii, Laravel, CI and Cakephp are the most famous php frameworks on the market, I would like to know / confirm that all of the above structures work effectively with NoSQL databases like Cassandra or Mongodb?

  • I'm not sure about this, can anyone help me figure this out briefly?
  • Is it possible to perform a server-side check if we move to a NoSQL-type database?
+6
source share
1 answer

I am sure that you can work with Mongo from all the frameworks you need. Example from google:

Choose the Framework that you like or have. Each of them has great community work and solutions with NoSQL DB.

Regarding server side validation. Why not? Server check should not connect to the selected database.

The difference from MySQL is that if you enter the wrong data, it will show you an error. In NoSQL, this value is accepted. But the correct behavior of working with the database checks the accuracy of the information before transmitting the database. So first you check the POST, then if it is valid, pass it to the database.

+7
source

Source: https://habr.com/ru/post/972163/


All Articles