gettext 会降低我的 PHP 应用程序的速度吗?
有谁知道 标准 php gettext 是否会减慢 Web 应用程序的速度?
如果总是必须读取 .po 文件,我想它会变得非常慢。所以我认为使用的技术可能会有所不同(缓存?它是如何工作的?)。有人可以从性能的角度解释 gettext 在 PHP 中是如何工作的吗?
Does anybody know if the standard php gettext does slow down the web application?
If the .po file always had to be read, it would get really slow I guess. So I thought the technique used might be different (Caching? How does it work?). Could somebody please explain how gettext works in PHP from the performance point of view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我自己将包含约 300 个独特字符串的英文 Web 应用程序翻译成中文的经验:我没有注意到太大的差异。感觉同样敏捷。
我想在根据猜测过早优化之前,您应该检查它是否确实是您的特定设置中的问题。
BTW:
.po
文件实际上并不是每次都被解析,它被翻译成二进制.mo
文件From my own experience translating an English web application with about ~300 unique strings to Chinese: I did not notice much of a difference. It felt just as snappy.
I guess before you optimize prematurely based on guesses, you should check if it's actually a problem in your specific setup.
BTW: the
.po
file is actually not parsed every time, it is translated into a binary.mo
file