当前位置:网站首页>Software architecture and design (V) -- data centric architecture
Software architecture and design (V) -- data centric architecture
2022-07-28 15:44:00 【Liu Yiyi】
Data centric Architecture
In data-centered architecture, the data is centralized and accessed frequently by other components, which modify data. The main purpose of this style is to achieve integrality of data. Data-centered architecture consists of different components that communicate through shared data repositories. The components access a shared data structure and are relatively independent, in that, they interact only through the data store.
The most well-known examples of the data-centered architecture is a database architecture, in which the common database schema is created with data definition protocol – for example, a set of related tables with fields and data types in an RDBMS.
Another example of data-centered architectures is the web architecture which has a common data schema (i.e. meta-structure of the Web) and follows hypermedia data model and processes communicate through the use of shared web-based data services.
边栏推荐
猜你喜欢
随机推荐
如何有效进行回顾会议(上)?
[delete specified number leetcode]
Regular expression (4)
多线程
Problem of fetching combinatorial numbers
AS如何不区分大小写去进行智能提示
一文了解 Rainbond 云原生应用管理平台
融云实时社区解决方案
为赴美上市做准备?Arm宣布将剥离物联网服务业务:未来将聚焦芯片底层设计
数牍 X Rust,那些不得不说的事
ECCV 2022 | ssp: a new idea of small sample tasks with self-supporting matching
Flutter中是使用RxDart代替Stateful
Framework customization series (I) -- systemui NavigationBar slide back to launcher on the navigation bar
Return the two subscripts of the array according to the input target.
已拿下华为85亿元屏幕订单?维信诺回应:客户要求保密,无法回复!
玩死原型链
Try... Except exception handling statement (6)
详解.NET的求复杂类型集合的差集、交集、并集
软件架构与设计(九)-----基于组件的架构
Learn RX programming from me -- concat


![【删除指定数字——leetcode]](/img/16/b40492d8414a363a3a24f00b4afd47.png)






