mysql
摘要:数据库缓存池, 参考: https://www.cnblogs.com/myseries/p/11307204.html MySql 缓冲池(buffer pool) 和 写缓存(change buffer) 应用系统分层架构,为了加速数据访问,会把最常访问的数据,放在缓存(cache)里,避免每次
阅读全文
MongoDB笔记
摘要:基本概念: 文档->行 集合->表 MongoDB在shell中的CURD: 1、创建(insert) eg: > post = {"title" : "My blog", "content" : "Here's my blog"} > db.blog.insert(post) 2、读取(find/
阅读全文