Example of moving from MySQL to NoSQL?(从 MySQL 迁移到 NoSQL 的示例?)
问题描述
对于类似 Facebook 的网站,即.它是写入密集型并提供用户自定义页面,我想构建一个原型来研究以文档为中心的 NoSQL 架构是否是分片的一个很好的替代方案,并减少单个主机(+多个从机)的负载我们目前使用的是瓶颈.
For a Facebook-like site, ie. which is write-intensive and delivers user-customized pages, I'd like to build a prototype to investigate whether the document-centric NoSQL architecture would be a good alternative to sharding and reduce the load on the single master (+ multiple slaves) that we currently use and is the bottleneck.
有没有人知道一篇好的文章可以提供从 MySQL 中的关系布局到 NoSQL 布局的实际简单示例?
Does someone know of a good article that would give actual, simple examples of going from a relational layout in MySQL to a NoSQL layout?
推荐答案
你可以查看一个真实的 twitter 简单克隆示例
You may check a real example of a working twitter simple clone
http://twissandra.com/
源代码位于 http://github.com/ericflo/twissandra
这是另一篇解释 cassandra 数据模型的好文章:
Here's another good article explaining cassandra data model:
http://arin.me/blog/wtf-is-a-supercolumn-cassandra-data-model
这篇关于从 MySQL 迁移到 NoSQL 的示例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 MySQL 迁移到 NoSQL 的示例?
基础教程推荐
- 是否可以执行按位分组功能? 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 无法解决整理冲突 2021-01-01
