执行yum list installed | grep xxx 命令时报错 模块依赖问题 问题 1: conflicting requests - nothing provides module(perl:5.26) needed by module perl-DBD-SQLite:1.58:801 ...
分类:
数据库 时间:
2020-05-03 10:47:34
阅读次数:
93
1.数据库架构设计 Shared Everthing:完全透明共享 CPU/MEMORY/IO,并行处理能力是最差的;如:SQL Server Shared Storage:各个处理单元使用自己的私有 CPU 和 Memory,共享磁盘系统; Shared Nothing:各个处理单元都有自己私有的 ...
分类:
其他好文 时间:
2020-04-23 23:02:18
阅读次数:
84
OO第二单元博客总结 第一次 设计策略: 直接使用生产者,消费者模型,没有中间调度器。电梯Elevator直接作为消费者,读入请求,完成请求,生产者类ElevatorReader负责放置请求。受到Concurrent包的启发,单独设置线程安全的数据类,存放队列和”全局结束“标志位。在生产者和电梯之间 ...
分类:
其他好文 时间:
2020-04-17 20:11:40
阅读次数:
67
事务:包含一系列操作的、一个有边界的工作序列,有明确的开始和结束标志,且要么被完全执行,要么完全失败,all or nothing ACID 分布式事务基本能够满足ACID,其中的C是强一致性,也就是所有操作均执行成功,才提交最终结果,以保证数据一致性或完整性。但随着分布式系统规模不断扩大,复杂度急 ...
分类:
其他好文 时间:
2020-04-17 12:50:18
阅读次数:
63
web应用连接oracle数据库时,经常在查询数据时发生 Listener refused the connection with the following error: ORA-12519, TNS:no appropriate service handler found The Connect ...
背景:在日常运维工作中,各种各样的问题,真是千奇百怪。今天遇到这个问题了,查了一些解决办法,做了一个汇总,今天就分享一下。 错误:ORA-12519, TNS:no appropriate service handler found [oracle@localhost ~]$ oerr ora 12 ...
分类:
移动开发 时间:
2020-04-08 09:34:56
阅读次数:
103
```pythonon_delete=None, # 删除关联表中的数据时,当前表与其关联的field的行为on_delete=models.CASCADE, # 删除关联数据,与之关联也删除on_delete=models.DO_NOTHING, # 删除关联数据,什么也不做on_delete=m... ...
分类:
其他好文 时间:
2020-04-07 15:38:59
阅读次数:
71
ini.remove_option Remove a key/value pair from a section in an ini file. Returns the value of the removed key, or if nothing was removed. API Example: ...
分类:
其他好文 时间:
2020-03-28 21:46:58
阅读次数:
70
description you are given an array and you are asked to make $k$ elements of it equal after some operations. you can make one of the following operati ...
分类:
其他好文 时间:
2020-03-28 20:20:02
阅读次数:
99
参考:https://blog.csdn.net/think_nothing/article/details/53788524 1、虚拟机扩容 D:\VirtualBox VMs>VBoxManage list hddsUUID: f69aee89-bdb3-4337-9ec3-6231b97e98 ...
分类:
系统相关 时间:
2020-03-21 13:07:58
阅读次数:
77