InterviewSolution
Saved Bookmarks
| 1. |
What is ODM in Phalcon? |
|
Answer» ODM or OBJECT-Document-Mapping is the mapping for NOSQL databases. Phalcon can MAP documents from NoSQL databases through ODM using a UNIQUE ObjectID for each object to be mapped. Phalcon’s ODM offers CRUD functionality, events, validation, and other services. The advantage of ODM is that it is a persistence mechanism where an application model and data SOURCE have no dependencies on each other. |
|