icon

Database

  • Published on
    为什么这么设计(Why’s THE Design)是一系列关于计算机领域中程序设计决策的文章,我们在这个系列的每一篇文章中都会提出一个具体的问题并从不同的角度讨论这种设计的优缺点、对具体实现造成的影响。
  • Published on
    数据库的书以下面两本为主: 【数据库系统基础教程】 【数据库系统实现】 其他的参考书: 【数据库系统概念】 【事务处理:概念与技术】 【数据库与事务处理】 【SQL与关系数据库理论】 【PostgreSQL 数据库内核分析】 【MySQL技术内幕 InnoDB存储引擎】 【MySQL内核:InnoDB存储引擎 卷1】 【MySQL核心内幕】 RDBMS和NoSQL开源项目 【H2关系数据库源...
  • Published on
    Open source databases offer flexibility, scalability, and cost savings. They provide robust features for managing data, including relational and non-relational options, plus community of developers that contribute to their ongoing development and support. Here are some top open source databases to consider
  • Published on
    《数据库系统概念》,它是数据库系统方面的经典教材之一。国际上许多著名大学包括斯坦福大学、耶鲁大学、德克萨斯大学、康奈尔大学、伊利诺伊大学、印度理工学院等都采用本书作为教科书。这本书全面介绍了数据库系统的各种知识,透彻阐释数据库管理的基本概念。不仅讨论了数据库查询语言、模式设计、数据仓库、数据库应用开发、基于对象的数据库和 XML、数据存储和查询、事务管理、数据挖掘与信息检索以及数据库系统体系结构等方面的内容,而且对性能评测标准、性能调整、标准化以及空间与地理数据、事务处理监控等高级应用主题进行了广泛讨论。
  • Published on
    数据库设计 - 你需要系统地了解一下数据库设计中的那些东西,这里推荐慕课网的一个在线课程 --"[数据库设计的那些事](https://www.imooc.com/learn/117)"。每个小课程不过 5-6 分钟,全部不到 2 个小时,我相信你一定能跟下来。你需要搞清楚数据的那几个范式,还有 SQL 语句的一些用法。
  • Published on
    We introduced a memory database named scuba. In this paper, the author introduces a new memory storage layout to use column-oriented storage for better compression and faster query execution strategies. they reference lots of database design include Dremel Powerdrill etc.
  • Published on
    我读了两篇 一篇是netflix的 https://medium.com/netflix-techblog/scaling-time-series-data-storage-part-i-ec2b6d44ba39 一篇如下:(从stackoverflow拷来的代码是有问题的) https://programming.guide/worlds-most-copied-so-snippet.html
  • Published on
    Hi all This is my first-time share something in this channel. recently I was grinding a database design paper announced from facebook named scuba. https://research.fb.com/publications/scuba-diving-into-data-at-facebook/ The paper was published for quite a long time. But the memory data storage partition and data aggregation design really hole my eye on it. Besides database design, we can also learn a lot about database benchmark. last, hope you have a great gain from the paper.
  • Published on
    翻译来源:https://www.2ndquadrant.com/en/postgresql/postgresql-vs-mysql/ PostgreSQL和MySQL 之间有着根本的区别。在评估两个系统之间的差异和折衷之后,必须做出明智的决定。 我们已经提供了 PostgreSQL和MySQL之间最常被评估的特性和功能的相似之处和不同 之处: 开源 酸顺应性 SQL合规性 复制 性能 安全 主机...
  • Published on
    产品技术解读TiKV 新架构:Partitioned Raft KV 原理解析在上一篇文章中,我们介绍了 Partitioned Raft KV 这一新实验特性带来的性能和可伸缩性大幅提升。本文我们将为大家介绍这一功能的实现原理。案例实践基于 TiDB + Flink...
  • Published on
    推荐一本书 《database internals》数据库内部剖析,这本书和《Designing Data-Intensive Application》 比较类似,不过它围绕的是如果构建一个分布式数据库,各种存储引擎比较,分布式系统的问题、一致性模型、选举和错误识别、如果选择共识算法。作者是Cassandra的作者