I want to stop caching in CS-CART (mainly for API), because if vendor changes something then in api it didn't reflect immediately.
Right now i am using File level caching.
$config['cache_backend'] = 'file';
$config['cache_redis_server'] = 'localhost';
$config['cache_redis_global_ttl'] = 0;
I searched a lot but no success, i also tried with
$config['smarty_caching'] = 0 ;
in config.php but also no success.