Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDO/MongoDB Store"

< CDO
(New page: The CDO MongoDB store is an implementation of a CDO Store that allows to store models and meta models to [http://www.mongodb.org/ MongoDB] databases. The current implementation supports a...)
 
(cdo-server.xml)
Line 17: Line 17:
  
 
     <store type="mongodb">
 
     <store type="mongodb">
<property name="uri" value="mongodb://localhost"/>
+
<property name="uri" value="mongodb://localhost"/>
<property name="db" value="specificDB"/>
+
<property name="db" value="specificDB"/>
<property name="drop" value="false"/>
+
<property name="drop" value="false"/>
 
     </store>
 
     </store>
  

Revision as of 15:44, 21 February 2011

The CDO MongoDB store is an implementation of a CDO Store that allows to store models and meta models to MongoDB databases.

The current implementation supports all CDO 4.0 features with the following exceptions:

  • NoExternalReferences (hence no meta references)
  • NoQueryXRefs (hence no ensureReferentialIntegrity)
  • NoLargeObjects
  • NoFeatureMaps
  • NoHandleRevisions
  • NoRawAccess (hence no offline support)
  • NoBranching
  • NoCrashRecovery

This document will help users setup their environment and configure CDO to work with MongoDB.

cdo-server.xml

   <store type="mongodb">

<property name="uri" value="mongodb://localhost"/> <property name="db" value="specificDB"/> <property name="drop" value="false"/>

   </store>



Wikis: CDO | Net4j | EMF | Eclipse

Back to the top