What are your "top 10" developer how to questions?

I am restarting my developer newsletter, blog. What would you like to know how to do? Once, I have some content, I'll post how to subscribe.

Parents Reply Children
  • Hi

    Thanks for the article, I saw it yesterday. I tried to configure it with the following parameters but the cache is still generated in cache folder, is it correct this way ? 

    $sugar_config['external_cache_force_backend'] = 'redis';
    $sugar_config['cache']['backend'] = 'Sugarcrm\Sugarcrm\Cache\Backend\Redis';
    'external_cache' =>
      array (
        'memcache' =>
        array (
          'host' => 'localhost',
          'port' => '11211',
        ),
        'redis'  =>
        array (
          'host' => '127.0.0.1',
          'port' => '6379',
        ),
      ),
      'external_cache_disabled' => false,
      'external_cache_disabled_apc' => true,
      'external_cache_disabled_memcache' => true,
      'external_cache_disabled_memcached' => true,
      'external_cache_disabled_redis' => false,
      'external_cache_disabled_smash' => true,
      'external_cache_disabled_wincache' => true,
      'external_cache_disabled_zend' => true,

    Is there anything else I should do ? 

    Best regards,

    Enes