English 中文(简体)
电子商务可扩展的数据库模式
原标题: e-Commerce scalable database model

我愿理解数据库的可扩展性,因此,我刚才听到了关于高尺度网络应用习惯的演讲。

http://techportal.inviqa.com/2007/03/02/habits-of-highly-scalable-web-applications/

发言人主要谈的是关系数据库的可扩展性。

我也阅读了一些有关地图和哥伦特表格、大张表、超级表格等的内容,试图了解哪些是扩大网络应用数据的最新方法。 但是,对我来说,第二组难以理解其适合之处。

它充当交易、可靠数据储存? 不管怎样,它只是为了大量进入和处理,以及为了处理我们永远需要依赖RDBMS的细微行动?

难道有人能为这些新技术提供一个全面的环境,以及如何加以利用?

最佳回答

从根本上说,它倾向于利用适当的工具从事这项工作。 数十年来,相关数据库一直存在,这意味着它们非常好,能够解决当时未发生变化的问题,例如保持销售轨道。 虽然它们只是为了所有事项而成为违约数据储存,但在处理20年前存在的问题时,这些储存并不很好,特别是在没有明确界定和不变的图表的情况下,其可衡量性和数据。

NOSQL是一种工具,旨在解决并非完全适合关系数据库的问题。 可否计算是众所周知的,但不大可能与大多数开发商有关。 我认为,我们尚未看到的其他关键使用案例是,一些小型项目不需要担心数据储存特征,而且只能使用缺省——能够绕过数据库设计、投管处和数据库维护,这是很有吸引力的。

具体来说,对电子商务而言,你可能至少部分使用q子,但你可能使用NOSQL作为产品细节或建议发动机,但你希望你的销售数据能够以易于问答的纸张表进行。

问题回答

暂无回答




相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签