在 Web 应用程序和单个进程之间交换数据
服务器端 一个 24 小时运行的 Linux 程序(比如 A):处理并保存数据 Web 服务器:处理 Web 请求
客户端(浏览器) 请求 http://mydomain.com/getdata 获取
每个 Web 请求的数据,Web 服务器(或 Web运行在其上的应用程序)应该向程序A询问最新数据
是否有任何框架可以帮助我快速构建这样的架构? 谢谢你!
SERVER SIDE
a 24-hour running linux program (say A): processes and holds data
web server: handles web request
CLIENT SIDE(browser)
request http://mydomain.com/getdata to get the data
for each web request, the web server(or web application running on it) should ask program A for the latest data
is there any framework can help me build such a architecture quickly?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LAMP Stack 将为您提供您想要的东西。 LAMP = Linux、Apache、MySQL 和 PHP。
它广泛用于满足您需求的应用程序,并得到大型活跃社区的支持。
您应该可以毫无问题地找到可以帮助您建立平台的优秀教程,一旦完成,您所需要做的就是寻找有关如何开发包含数据库访问的 PHP 网站的教程。
对于 PHP,有很多开源内容管理系统可能会满足您的需求(例如 Drupal),并且在以下方面: PHP 框架有诸如 Zend Framework 之类的东西。
The LAMP Stack will give you what you want. LAMP = Linux, Apache, MySQL and PHP.
It is widely used for applications that match your needs, and is supported by a large active community.
You should have no problem finding good tutorials that help you get the platform established, once that's done all you need to do is go looking for tutorials on how to develop PHP websites that include database access.
With PHP there's lots of open source Content Management Systems that might give you what you need (such as Drupal) and in terms of PHP frameworks there's stuff like the Zend Framework.