Gor Martsen

Results 25 comments of Gor Martsen

@jlfranklin thank you for feedback. menu_rebuild.php still need some extra work. I think it should be available by the same rules as we have for update.php. So Admin only can...

> - Makes it easier to synchronize config changes among multiple web servers in a load balanced environment. - Makes it easier to capture the entire state of an environment...

@jenlampton - I usually works on edge-case and performance critical tasks. I will be more than happy to do measurements and tests for this type requests and if necessary provide...

@sentaidigital Tnx for numbers! I will be able to do extra speed tests only after December 7. (I am still in Peru, doing traveling) I saw latest commit. We do...

Ps: each test run on new google cloud instance, so here is no effect on tests speed if you run many tests simultaneously

@sentaidigital I created PR backdrop/backdrop#1661 I added small patch to move config/active to /dev/shm (memory based partition). This way we are comparing speed for configs stored in database in memory...

I like an idea of adding API changes to config (like we have for cache) to make it possible to replace default ConfigFileStorage. For example, XCacheConfigStorage or even MemcacheConfigStorage could...

@sentaidigital - same as cache. So yes, we do need patch core to make it possible to replace default config class via settings.php for example.

upd: I mean, we need to change core to make possible something like this: settings.php ``` $settings['config_default_class'] = 'ConfigDatabaseStorage'; $settings['config_backends'] = array('modules/config_db/config_db.class.php'); ```

@sentaidigital basically I am proposing to change core in a way to make it possible to use contrib module for `ConfigDatabaseStorage` This way we minimize core changes and you can...