-2

我想创建一个具有非常大数据库的网站,因此如果您输入产品的 ID 或名称,您可以获得它的信息,还有一些其他功能,例如查看在哪里可以找到该产品等。所以会有很多大的相互连接的表格,以及始终与它们一起工作的网站。

所以我想问我应该如何创建这个网站,我可以使用 CMS 来管理它(这将是最好的选择)还是我应该使用框架(基于 PHP)或从头开始。因为我担心如果我使用 CMS 会影响网站速度,尽管这只是我的猜测。

我对 Drupal 有一些经验,所以可能有人知道这种网站是否可以用它编写。无论如何,对我的任何建议都很重要。先感谢您!

康斯坦丁

4

1 回答 1

1

If you already have experience with Drupal I'd suggest to use that. There are many ways to optimize the speed of your data access. My best guess is that you look at Solr to speed up data-indexing; http://lucene.apache.org/solr/

There is also a Drupal module available for that to get you up and running; http://drupal.org/project/apachesolr

But if time is not an issue, I'd suggest to look into some frameworks. At the moment I think Symfony 2 will do the job just fine. http://symfony.com/

于 2012-07-06T08:50:38.710 回答