I noticed that this module saves CCK Data in both MYSQL and MongoDB. Is there any way to just save the CCK Field Data to MongoDB and not save the data to MYSQL. Would like it to work this way so that I can have better performance in scaling DB writes.

Comments

jegan2668’s picture

try this:
enable mongodb_field_storage module (Build with mongodb). And add the below line in settings.php file.
$conf['field_storage_default'] = 'mongodb_field_storage';

Paul B’s picture

Fields are not stored in MySQL, but properties are stored both in MySQL and MongoDB. Is there a way to disable this? The mongo_entity module can store the entire entity in MongoDB, but since there is no schema numbers are stored as strings.

marcingy’s picture

Status: Active » Closed (won't fix)

Maybe d8 :)