Testing three type of caches: persistent, non-persistent and two-level.
- MacBook Air
- 13-inch, Mid 2012
- Processor 1.8 GHz Intel Core i5
- Memory 8 GB 1600 MHz DDR3
| <?php | |
| class Vianetz_StateStatusIntegrity_Model_Orderstatus extends Mage_Core_Model_Abstract | |
| { | |
| /** | |
| * Event: sales_order_save_before | |
| * | |
| * @param Varien_Event_Observer $observer | |
| * | |
| * @return Vianetz_StateStatusIntegrity_Model_Orderstatus |
| ; configuration for php ZendOpcache module | |
| ; Tuned for Magento 1.13.1 on PHP 5.5 | |
| ; Test server has 8 CPU cores and 32 GB RAM | |
| zend_extension=opcache.so | |
| [opcache] | |
| opcache.memory_consumption=256 | |
| opcache.interned_strings_buffer=12 | |
| opcache.max_accelerated_files=16000 | |
| opcache.enable_file_override=1 |
| #!/bin/bash | |
| #CONFIG | |
| backupDir='/mnt/backup' | |
| magentoDir='/var/www/magento/htdocs' | |
| magerunPath='/usr/bin/n98-magerun.phar' | |
| #NUMBER OF DAYS TO KEEP BACKUPS | |
| dailyKeepDays=7 | |
| weeklyKeepDays=30 |
| /* | |
| * TypoScript | |
| */ | |
| # render headline | |
| #tt_content.gridelements_pi1.10 = < lib.stdheader | |
| tt_content.gridelements_pi1.20.10.setup { | |
| 1 < lib.gridelements.defaultGridSetup | |
| 1 { | |
| columns { | |
| 1 < .default |
| ; Enable Zend OPcache extension module | |
| zend_extension=opcache.so | |
| ; Determines if Zend OPCache is enabled | |
| opcache.enable=1 | |
| ; Determines if Zend OPCache is enabled for the CLI version of PHP | |
| ;opcache.enable_cli=0 | |
| ; The OPcache shared memory storage size. |
| <?php | |
| /** | |
| * Magento | |
| * | |
| * NOTICE OF LICENSE | |
| * | |
| * This source file is subject to the Open Software License (OSL 3.0) | |
| * that is bundled with this package in the file LICENSE.txt. | |
| * It is also available through the world-wide-web at this URL: | |
| * http://opensource.org/licenses/osl-3.0.php |
| {namespace dce=ArminVieweg\Dce\ViewHelpers} | |
| <f:layout name="Default" /> | |
| <f:section name="main"> | |
| <f:for each="{dce:fal(field:'images', contentObject:contentObject)}" as="image"> | |
| <!-- This is the normal unresponsive way --> | |
| <f:image image="{image}" /> | |
| <!-- Here we referer to typoscript to render the responsive image --> | |
| <f:cObject typoscriptObjectPath="lib.responsiveImage" data="{image.uid}"></f:cObject> | |
| </f:for> |
| options { | |
| // enable upload fields in Element Browser | |
| uploadFieldsInTopOfEB = 1 | |
| createFoldersInEB =1 | |
| //Add save-and-new to all forms | |
| saveDocNew = 1 | |
| // better Page tree | |
| pageTree { | |
| showNavTitle = 1 | |
| showPageIdWithTitle = 1 |