By editor, 15 May, 2017 Git Tags Tags Drupal 8 Code Git Add remove git tags. Create a tag git tag <TAGNAME> Push tag git push origin <TAGNAME> git push --tags Pull tags git tag -l git checkout tags/<TAGNAME>
By editor, 11 May, 2017 YAML or JSON Tags Drupal 8 Code JSON YAML Yml vs Json A make a small test to test YAML vs PHP performance. The result is:
By editor, 24 April, 2017 Drupal 8 Cache contexts Tags Drupal 8 Code Cache Drupal 8 shiped with a powerfull cache API able to set cache according to a context. correct usage of this cache improve the site preformence greatly. https://www.drupal.org/docs/8/api/cache-api/cache-contextshttps://www.drupal.org/node/2451661
By editor, 24 April, 2017 Memcache - Install memcached on linux and Drupal. Tags Drupal 8 Code Cache Server Memcache is caching server allow you to incrise and have great performence on your site. Drupal and memcached work very well and here the full tutorial you need to install and setup memcache server and your drupal instance.
By editor, 29 March, 2017 Few Tips to create a custom module Tags Drupal 8 Code Module Check module exist if (\Drupal::moduleHandler()->moduleExists('my_module')) { $message = 'Module exist.'; } else { $message = 'Not exists.'; }