哪个性能更好 - 使用 php-qt 或为 c++ 编写自定义 php 扩展使用大口喝?
我正在使用 Yii 编写一个 php Web 应用程序,并且需要使用 C++(将使用 Qt-Core)来处理某些性能关键部分。我有两个选择:
i) 使用 php-qt 并使用 php 的 qt 绑定编写这些部分。
ii) 用 C++/Qt 编写这些部分,并使用 swig 生成 php 扩展以在我的 php 应用程序中使用。
从性能的角度来看,您会建议哪一个?
两者之间会有多大的差别呢?
谢谢!
I'm writing a php web application using Yii and need to use C++ (will use Qt-Core) for some performance critical parts. I have two options:
i) Using php-qt and write those parts using qt bindings for php.
ii) Write those parts in C++/Qt and using swig to generate php extensions to use in my php app.
Which one would you suggest from a performance standpoint?
How much difference would there be between the two?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管我非常喜欢 Qt,但如果您关心性能,我会选择 swig。
Even though I like Qt quite a bit, but if performance is your concern I would take the swig path.