Query builder using Zend Framework

拜拜、爱过 提交于 2019-12-08 01:20:15

问题


I am just beginning my journey into PHP Zend Framework World. The aim of my application is to develop query builder using Zend. This application will be used by many users in a network at same time. When a user performing search based on some conditions provided by the application, the system will fetch the relevant search results from the large database (More than 50 Million Records or even more).

Note: One user can perform multiple search requests at a time. Each request creates a unique queue id.

Due to more load in the search result page, it will take some time to display the results. So, I have an idea in order to achieve the user friendly environment. Once the user performed the search, he/she can navigate to any other web page, once all the request are completed, an alert or notification will be shown to the user that the search results are ready to view.

According to the queue id, the user can switch back to the search result page and see their results. I had tried with Zend Queue from (http://dennisgurnick.com/2011/09/29/zend-queue-with-mysql/); it’s only for sending emails one by one. So, please tell me, how to achieve this, your answers are much appreciated.

来源:https://stackoverflow.com/questions/15971532/query-builder-using-zend-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!