一、概述 Redis是C语言开发的一个开源的(基于BSD协议)高性能键值对(key-value)的内存数据库,可以用作数据库、缓存、消息中间件等。 它是一种NoSQL(Not-Only SQL)的数据库。 Redis作为一个内存数据库,性能优秀,数据在内存中,读写速度非常快,支持并发10W QPS。 ...
分类:
其他好文 时间:
2020-06-11 09:11:25
阅读次数:
53
系列文章 基于 abp vNext 和 .NET Core 开发博客项目 - 使用 abp cli 搭建项目 基于 abp vNext 和 .NET Core 开发博客项目 - 给项目瘦身,让它跑起来 基于 abp vNext 和 .NET Core 开发博客项目 - 完善与美化,Swagger登场 ...
分类:
Web程序 时间:
2020-06-10 09:19:55
阅读次数:
72
以百度搜索首页为例,我们要定位到搜索输入框的话,应该如何写呢? 单属性查找 # 1.用 标签名 定位查找 driver.find_element_by_css_selector("input") # 2.用 id 属性定位查找 driver.find_element_by_css_selector( ...
分类:
Web程序 时间:
2020-06-08 20:54:04
阅读次数:
303
WebDriver操作Cookie的方法如下: get_cookies():获得所有Cookie get_cookie(name):返回字典中key为“name”的Cookie from selenium import webdriver driver = webdriver.Chrome() dr ...
分类:
其他好文 时间:
2020-06-08 17:29:00
阅读次数:
102
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s. Strings consists of lowercase English letters only and the ...
分类:
其他好文 时间:
2020-06-08 11:06:25
阅读次数:
76
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop o ...
分类:
其他好文 时间:
2020-06-08 00:29:09
阅读次数:
53
一、NoSQL简介 NoSQL(Not Only SQL ),意即"不仅仅是SQL"。 指的是非关系型的数据库。是对不同于传统的关系型数据库的数据库管理系统的统称。 NoSQL用于超大规模数据的存储。(例如谷歌或Facebook每天为他们的用户收集万亿比特的数据)。这些类型的数据存储不需要固定的模式 ...
分类:
数据库 时间:
2020-06-07 10:47:32
阅读次数:
80
今天在Ubuntu系统上挂载之前安装windows10系统的硬盘时,发现权限一直为read-only,重新以rw挂载还是不行,在网上查询发现是NTFS格式的问题 需要使用ntfsfix命令,之后再挂载就可以读写了,具体参考这个帖子 https://ubuntuforums.org/showthrea ...
分类:
Web程序 时间:
2020-06-06 16:56:12
阅读次数:
94
#####在编写realm数据库相关时: 代码: List<Student> delByStudent(String priNum){ RealmResults<Student> studentsList = myStudentRealm.where(Student.class).equalTo(" ...
分类:
数据库 时间:
2020-06-05 15:37:00
阅读次数:
92
1.系统启动流程 开机 >BIOS自检(需要检测的设备是否正常) >磁盘的MBR分区 >BootLoader(引导加载器)加载内核 >识别各分区的文件系统 2.内核 什么是内核:内核其实也是一个软件(例如Linux内核用C语言开发),存放在磁盘的某个地方(例如sda1分区)。 不同的操作系统(内核不 ...
分类:
其他好文 时间:
2020-06-05 15:34:03
阅读次数:
93