说明 Percona XtraDB Cluster(简称PXC),是由percona公司推出的mysql集群解决方案。特点是每个节点都能进行读写,且都保存全量的数据。也就是说在任何一个节点进行写入操作,都会同步给其它所有节点写入到自己的磁盘。这点跟Oracle Rac有本质的区别,Rac是多个节点连 ...
分类:
数据库 时间:
2021-03-04 13:04:00
阅读次数:
0
ElasticsearchConfig /// <summary> /// ES 连接配置 /// </summary> public class ElasticsearchConfig { /// <summary> /// 节点列表 /// </summary> public IEnumerab ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab页切换</title> <style> .tab { background: grey; overflow: auto; width: 240px; bo ...
分类:
Web程序 时间:
2021-03-03 12:28:04
阅读次数:
0
Posted on 2014 年 7 月 19 日 一个code review请求,至少包括”summary”,”description”, 一些”reviewers”。一个code review请求通常包含diff文件,如果code review请求中只有附件,那个这个diff文件就更有用了。 有 ...
分类:
其他好文 时间:
2021-03-03 12:26:53
阅读次数:
0
1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:
数据库 时间:
2021-03-03 12:17:55
阅读次数:
0
写在前面 只是记录一下学习过程 ... Exec 怎么说呢, 我认为的 exec 是返回 下一次 exec 的起始位置 即 lastIndex ( 对于 标志 g 全局匹配 才有大用处 ) lastIndex 是 正则表达式 实例 即 RegExp 实例 中的一个属性 表示 在源字符串 中下一次搜索 ...
分类:
编程语言 时间:
2021-03-03 12:15:10
阅读次数:
0
router.beforeEach((to, from, next) => {/* 路由发生变化修改页面title */if (to.meta.title) {document.title = to.meta.title}if(to.meta.content){let head = document ...
分类:
其他好文 时间:
2021-03-03 12:05:46
阅读次数:
0
在MySQL作为应用系统的后台数据库时,我们常常见到这样的架构,一拖二、一拖三等等。这是用MySQL的读写分离技术,实现数据的写入和读取分别在不同的库上,提升了数据库服务能力。同样,在Oracle作为后台数据库的架构中,我们也可以这么做。实现的方式有很多种。有基于RAC架构的,使用其中某个节点作为读 ...
分类:
数据库 时间:
2021-03-03 11:51:56
阅读次数:
0
using System; using System.Text.RegularExpressions; public partial class RegexEx { /// <summary> /// 验证输入字符串是否与模式字符串匹配,匹配返回true /// </summary> /// <pa ...
分类:
其他好文 时间:
2021-03-02 11:46:45
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <style type="text/css"> #header, #nav, #content-main, #content-2, #content-3, #content-4, #content-5, #content ...
分类:
Web程序 时间:
2021-03-01 13:23:06
阅读次数:
0