# @Filename: search_document.py import os,re import shutil import pandas as pd import time class atom_file(object): def re_doucement(self,path,pattern ...
分类:
其他好文 时间:
2021-04-06 14:59:44
阅读次数:
0
本文主要解析常用方法 findAll() 在 MyBatis 中的详细执行流程~ ...
分类:
其他好文 时间:
2021-04-06 14:47:03
阅读次数:
0
关键字联想词优化方案 Redis + Trie树 4.4.1现有问题 每次输入关键字的时候都会调用后台获取数据,频繁的发起请求查询数据库,并且是模糊查询 随着联想词的搜索越来越频繁,每次从数据库查询非常占用数据库资源,同时查询效率比较低 4.4.2 优化方案Trie树 优化方案: 数据能够缓存到re ...
分类:
其他好文 时间:
2021-04-05 12:26:58
阅读次数:
0
二叉树的遍历 前序遍历 LeetCode.144. 二叉树的前序遍历 二叉树的前序/中序/后序遍历的非递归描述一般适合用深度优先搜索 (DFS, depth-first search), 并使用栈的数据结构. 版本1 递归 from typing import List class Node: de ...
分类:
其他好文 时间:
2021-04-05 11:47:20
阅读次数:
0
function isMobile(){ if( navigator.userAgent.match(/Android/i)|| navigator.userAgent.match(/webOS/i)|| navigator.userAgent.match(/iPhone/i)|| navigato ...
分类:
其他好文 时间:
2021-04-02 13:34:15
阅读次数:
0
def jobName = "预发布-Server-5050" //删除小于64的构建历史 def maxNumber = 25 Jenkins.instance.getItemByFullName(jobName).builds.findAll { it.number <= maxNumber } ...
分类:
其他好文 时间:
2021-03-31 12:32:54
阅读次数:
0
#include <iostream> void print_arrs(const int *, int N); void sort_arrs(int *pInt, int N); constexpr int COUNT = 10; int search_data(const int *pInt, ...
分类:
其他好文 时间:
2021-03-31 12:20:32
阅读次数:
0
dockerSearch命令
Get https://index.docker.io/v1/search?q=redis&n=25: dial tcp: lookup index.docker.io on [::1]:53: read udp [::1]:49555->[::1]:53: read:... ...
分类:
其他好文 时间:
2021-03-31 12:10:21
阅读次数:
0
最近重装了系统,安装python 需要先安装window7 service pack 1 在网上找了很久,都是不能用的 下载链接,这里分享一个有用的链接 https://www.catalog.update.microsoft.com/Search.aspx?q=KB976932 供遇到同样问题的朋 ...
分类:
编程语言 时间:
2021-03-30 13:15:03
阅读次数:
0
以创建sqli-labs靶场为例子记录一下docker的常用指令 1. 镜像 1.2 查找镜像 docker search sqli-labs 1.3 获取镜像 docker pull sqli-labs 1.4 登录/退出第三方仓库 docker login/logout [ 仓库地址 ] 1.5 ...
分类:
数据库 时间:
2021-03-29 12:47:16
阅读次数:
0