如何使用倾斜在 sinatra 视图中缓存/预编译 slim 文件
Slim 文档说 template/.slim 文件可以通过倾斜进行编译和缓存。我在 sinatra 中使用 slim 来查看视图。如何预编译文件/是否可以查看编译后的文件.. 它还会在第一次调用后缓存预编译文件。我应该在 sinatra 中做一些设置吗
谢谢
Slim documentation says that the template/.slim file can be compiled and cached with tilt. I am using slim for the views in sinatra. How to precompile the file / is it possible to view the compiled file..
Also would it cache the precompiled file after the first call. should I do some setting for it in sinatra
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,Sinatra 自述文件是您的朋友。在 :product 中,默认情况下会编译所有视图。另请查看自述文件中的缓存部分,其中将为您提供不同的选项。
well, the Sinatra Readme is your friend. In :production all your views are compiled by default. Please also have a look at the Caching section in the Readme which will give you the different options.