是否要运行缓存预热来替换使用自定义路径创建的缓存路径中的位置。
for eg after running
php console cache:warmup *..other args..*
我得到类似
的东西/home/user/code/xxx/...
,我想用
代替它/var/www/code/xxx/....
这是我为ant做的任务
<target name="warmup-cache">
<exec dir="${basedir}"
executable="php"
failonerror="true">
<arg line="app/console cache:warmup -a=name --env=prod "/>
</exec>
</target>
我正在使用apache ant在构建期间执行此命令
现在生成的缓存有所有的路由作为/home/user/code/xxx/…
我想把所有缓存数据重命名为/var/www/code/…
可以从anti -conrib任务中使用propertyregex任务
如果你能提供一个更准确的例子,我可以为你写正则表达式:)