https://git-scm.com/docs/git-gc NAME git-gc - Cleanup unnecessary files and optimize the local repository SYNOPSIS git gc [--aggressive] [--auto] [--q ...
分类:
其他好文 时间:
2020-07-11 18:56:34
阅读次数:
167
crawlSpider 是Spider的一个子类。自己派生出独有的方法和属性。功能:作用全站数据爬取场景使用: - 创建工程 - cd 工程 - 创建爬虫文件: - 创建一个基于CrawlSpider的爬虫文件 - 指令:scrapy genspider -t crawl spiderName ww ...
分类:
其他好文 时间:
2020-07-10 17:01:13
阅读次数:
112
前几天HBase出现了RIT告警,忽然发现发出告警的Region所属的表并不是我创建出来的,于是就想看看这些表是怎么来的。 一时也没什么头绪,就先看看这些表是什么时候创建出来的吧,然后再根据时间点看看有谁操作了数据库。 那么怎么看表的创建时间呢?desc看一下,也没有这个属性啊。再细想呢,hbase ...
分类:
其他好文 时间:
2020-07-10 15:14:17
阅读次数:
168
linux自定义服务并设置开机自启动 【init.d】 服务脚本 #!/bin/sh #chkconfig: 2345 80 05 #description: api-server start() { nohup java -jar ./ } stop() { } status() { `ps -e ...
分类:
其他好文 时间:
2020-07-10 13:32:25
阅读次数:
70
select * from show_center.biz_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; select * from show_center.std_show where show_Name ...
分类:
其他好文 时间:
2020-07-10 13:08:57
阅读次数:
72
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>协同办公云平台-登录</title> <link href="~/Conten ...
分类:
Web程序 时间:
2020-07-10 09:46:03
阅读次数:
96
433. 岛屿的个数 中文English 给一个 01 矩阵,求不同的岛屿的个数。 0 代表海,1 代表岛,如果两个 1 相邻,那么这两个 1 属于同一个岛。我们只考虑上下左右为相邻。 样例 样例 1: 输入: [ [1,1,0,0,0], [0,1,0,0,1], [0,0,0,1,1], [0, ...
分类:
其他好文 时间:
2020-07-10 09:27:58
阅读次数:
64
oracle: select * from ene_electricity where num is not null order by year desc,month desc ...
分类:
数据库 时间:
2020-07-09 12:39:18
阅读次数:
103
获取排序后的前12条数据: select * from (select * from ene_electricity where num is not null order by year desc,month desc) where rownum <=12 ...
分类:
编程语言 时间:
2020-07-09 12:20:42
阅读次数:
61
介绍 Redis是一个内存中的键值存储器,以其灵活性,性能和广泛的语言支持而闻名。它通常用作数据库,缓存和消息代理,并支持各种数据结构。 本教程演示如何在Ubuntu 18.04服务器上从源进行安装和配置Redis。请注意,通过官方Ubuntu存储库下载和安装Redis可以减少安装步骤。 准备 一个 ...
分类:
系统相关 时间:
2020-07-09 12:06:37
阅读次数:
58