<tfoot id='SCJfb'></tfoot>
    • <bdo id='SCJfb'></bdo><ul id='SCJfb'></ul>

    <legend id='SCJfb'><style id='SCJfb'><dir id='SCJfb'><q id='SCJfb'></q></dir></style></legend>

      1. <i id='SCJfb'><tr id='SCJfb'><dt id='SCJfb'><q id='SCJfb'><span id='SCJfb'><b id='SCJfb'><form id='SCJfb'><ins id='SCJfb'></ins><ul id='SCJfb'></ul><sub id='SCJfb'></sub></form><legend id='SCJfb'></legend><bdo id='SCJfb'><pre id='SCJfb'><center id='SCJfb'></center></pre></bdo></b><th id='SCJfb'></th></span></q></dt></tr></i><div id='SCJfb'><tfoot id='SCJfb'></tfoot><dl id='SCJfb'><fieldset id='SCJfb'></fieldset></dl></div>

        <small id='SCJfb'></small><noframes id='SCJfb'>

      2. Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗

        Is Joomla 2.5 much faster than Joomla 1.5 Querywise(Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗)

              <bdo id='0U4jp'></bdo><ul id='0U4jp'></ul>
              1. <small id='0U4jp'></small><noframes id='0U4jp'>

                • <legend id='0U4jp'><style id='0U4jp'><dir id='0U4jp'><q id='0U4jp'></q></dir></style></legend>
                • <tfoot id='0U4jp'></tfoot>
                  <i id='0U4jp'><tr id='0U4jp'><dt id='0U4jp'><q id='0U4jp'><span id='0U4jp'><b id='0U4jp'><form id='0U4jp'><ins id='0U4jp'></ins><ul id='0U4jp'></ul><sub id='0U4jp'></sub></form><legend id='0U4jp'></legend><bdo id='0U4jp'><pre id='0U4jp'><center id='0U4jp'></center></pre></bdo></b><th id='0U4jp'></th></span></q></dt></tr></i><div id='0U4jp'><tfoot id='0U4jp'></tfoot><dl id='0U4jp'><fieldset id='0U4jp'></fieldset></dl></div>
                    <tbody id='0U4jp'></tbody>
                  本文介绍了Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想知道 Joomla 2.5 是否比 Joomla 1.5 快得多.我不期望从页面内容、库或 motools 库等的加载中得到答案.我是从 mysql 查询的角度提出问题的……比如对于具有 4-500 万行的大型 mysql 表的一些连接查询、多查询等?

                  I wanted to know if Joomla 2.5 is much faster than Joomla 1.5. I am not expecting answers from the loading of the page content, libraries or motools libs etc. I am asking from the point of mysql queries...like will some join queries, multi queries etc for large mysql tables with 4-5 million rows?

                  我正在开发一个工作门户网站,我已经拥有一个包含 500 万求职者的数据库......有些查询需要很长时间才能执行或出现致命错误(内存分配).所以我想知道 Joomla 2.5 是否能更好地满足我的目的?

                  I am developing a job portal for which i already have a database of 5 million jobseekers...and some queries take long time to execute or gives the Fatal error (memory allocated). So i was wondering if Joomla 2.5 would better serve my purpose?

                  推荐答案

                  如果您有数百万条记录,两个版本都是相同的.

                  Both versions are same if you have millions of records.

                  让我告诉您为什么 CMS(Joomla 和 Wordpress 等)会在您的网站增长并且数据库变得像 500 万条记录一样庞大时给您服务器超时!

                  Let me tell you why CMS (Joomla and Wordpress and likes) give you server timeouts when your website grows and the database becomes as giant as 5mn records!

                  1. CMS 是旨在让您能够根据需要扩展网站的系统.
                  2. 这样做,您可以开发扩展并继续添加内联查询!!!
                  3. 当您显示 100 万条记录中的记录列表(比如每页 15 条记录)时.CMS 查询该表.
                  4. 除了 #3,CMS 还在幕后运行许多其他查询,以执行其他内部任务,例如跟踪点击量、跟踪用户和后续工作.
                  5. 除了 #4,可能还有其他几个模块和插件将在同一页面上运行,而不管您的执行标准如何,并且可能有更多的内联查询(遗憾的是,其中大多数运行了大量查询).
                  6. 莉>

                  现在假设您有大约 100 个用户.来加载我在 1-5 上面写的同一个页面.假设这个场景执行了大约 10 个 mySQL 查询,然后想象一下如果你一次有 100 个用户会执行多少个?

                  Now assume you have about 100 users. Came to load the same page for which I wrote above 1-5. Say this scenario executes about 10 mySQL queries then imagine how many would be executed if you have 100 users at a time?

                  当你有这么大的数据库时——那么你必须实现负载平衡.现在,如果您可以访问其配置,则可以优化您的 MySQL 数据库.您可以考虑增加系统变量,如 max_connections 等.

                  When you have such large database - then you must implement load balancing. For now you can optimize your MySQL database if you have access to its configuration. You may look into increase sysvars like max_connections etc.

                  嗯,负载平衡"不是升级您的硬件,而是整个系统和工作流程,可帮助您以最大的优化实现目标.既然你在评论中提出了问题,我希望人们知道它是关于什么的,所以在我的回答中包括它以使其更清楚.

                  由于您的服务器超时并且数据库中有数百万条记录,因此您必须考虑以下网址中的说明:

                  Since you are having server timeout and its because of several million records in your database then you must think about something explained at following web locations:

                  http://en.wikipedia.org/wiki/Load_balancing_%28computing%29

                  http://technet.microsoft.com/en-us/library/bb742455.aspx

                  他们可能会帮助您理解我在说什么(可能偏离主题)但您必须认真研究如何分配数据库或网站负载的可能性,以便您可以允许他们快速执行查询.

                  They might help you understand what I am talking about (could be off the topic) but you must seriously look into the possibilities how you could distribute your database or the load on your website so that you can allow them to execute queries quickly.

                  这篇关于Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    1. <legend id='JDxnG'><style id='JDxnG'><dir id='JDxnG'><q id='JDxnG'></q></dir></style></legend>
                      <i id='JDxnG'><tr id='JDxnG'><dt id='JDxnG'><q id='JDxnG'><span id='JDxnG'><b id='JDxnG'><form id='JDxnG'><ins id='JDxnG'></ins><ul id='JDxnG'></ul><sub id='JDxnG'></sub></form><legend id='JDxnG'></legend><bdo id='JDxnG'><pre id='JDxnG'><center id='JDxnG'></center></pre></bdo></b><th id='JDxnG'></th></span></q></dt></tr></i><div id='JDxnG'><tfoot id='JDxnG'></tfoot><dl id='JDxnG'><fieldset id='JDxnG'></fieldset></dl></div>
                        <tbody id='JDxnG'></tbody>

                      <small id='JDxnG'></small><noframes id='JDxnG'>

                            <bdo id='JDxnG'></bdo><ul id='JDxnG'></ul>

                            <tfoot id='JDxnG'></tfoot>