# -*- coding: utf-8 -*-"""Created on Wed May 13 16:05:31 2020 @author: CHANYING""" import requestsfrom bs4 import BeautifulSoupallUniv=[]def get(url): ...
分类:
Web程序 时间:
2020-05-13 17:07:33
阅读次数:
110
package LeetCode_33 /** * 33. Search in Rotated Sorted Array * https://leetcode.com/problems/search-in-rotated-sorted-array/description/ * * Suppose a ...
分类:
其他好文 时间:
2020-05-13 16:37:05
阅读次数:
51
Description Given two sorted integer arrays A and B, merge B into A as one sorted array. You may assume that A has enough space (size that is greater ...
分类:
其他好文 时间:
2020-05-13 12:04:16
阅读次数:
68
Do the Real Thing May, 2020 | Comments | Share Success largely boils down to a simple distinction. It’s glaringly obvious once you see it, but also ea ...
分类:
其他好文 时间:
2020-05-13 09:41:28
阅读次数:
83
前提新启动一个Rancher管理集群,将原有集群作为资源集群加入Rancher管理集群,提升集群稳定性和安全性。集群合并调整期间顺利完成,集群升级完成后,原Rancher集群升级业务服务时发现报错如下:ErrImagePull:rpcerror:code=Unknowndesc=Errorresponsefromdaemon:pullaccessdeniedforreg.itsiv.com/lin
分类:
其他好文 时间:
2020-05-13 09:32:22
阅读次数:
249
一.重要概念 1.cluster cluster是 计算,存储和网络资源的集合,k8s利用这些资源运行各种基于容器的应用 2.master master是cluster的大脑,他的主要职责是调度,即决定将应用放在哪里运行。 master运行linux操作系统,可以是物理机或者虚拟机。为了实现高可用, ...
分类:
其他好文 时间:
2020-05-13 00:29:39
阅读次数:
90
由于VS2019编译器的特殊性,在调用一些函数时会出现类似以下错误: C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, u ...
分类:
其他好文 时间:
2020-05-12 17:24:06
阅读次数:
208
文章讲到的说 redis 集群指的是 redis-cluster 集群方式问题 :redis-cluster 数据是分片的,那么是如何分片的,增加和减少节点如何处理的redis 使用了一种叫 hash slot 的方式而非一致性hash 算法,增加和减少节点将会迁移某个节点的数据。redis-clu... ...
分类:
其他好文 时间:
2020-05-12 17:03:30
阅读次数:
80
一、安装goldengate软件 1.1测试环境 OS: redhat 6 64bit DB: oracle 11.2.0.3 64bit 查看OS和DB版本 [oracle@redhat6 ~]$ uname -aLinux redhat6 2.6.32-131.0.15.el6.x86_64 # ...
分类:
数据库 时间:
2020-05-12 13:47:39
阅读次数:
72
原文:三分钟快速搭建分布式高可用的Redis集群 这里的Redis集群指的是Redis Cluster,它是Redis在3.0版本正式推出的专用集群方案,有效地解决了Redis分布式方面的需求。当单机内存、并发、流量等遇到瓶颈的时候,可以采用这种Redis Cluster方案进行解决。 分区规则 R... ...
分类:
其他好文 时间:
2020-05-12 10:02:07
阅读次数:
68