在线生成实体:http://tool.chinaz.com/tools/json2entity.aspx ...
分类:
Web程序 时间:
2016-10-28 07:43:43
阅读次数:
164
组 添加组 groupadd 组名 查看所有组 cat /etc/group 添加成员useradd -g 组名 用户名 查看成员 cat /etc/passwd 查看用户权限 ls -l d rwx rwx rwx n root root 分别表示 文件还是文件夹 对自己 对同组 对其他组 含有多 ...
分类:
系统相关 时间:
2016-10-28 03:03:34
阅读次数:
210
前篇介绍的redis replication方法,操作步骤多,而且容易出错。在git上看到一些开源工具也能实现同步迁移功能,而且步骤简单,比如redis-port,redis-migrate-tool等工具。实验演示使用redis-migrate-tool,将redis cluster 迁移到一个单 ...
分类:
其他好文 时间:
2016-10-27 19:56:51
阅读次数:
1057
python 遍历文件夹 文件 import os import os.path rootdir = “d:\data” # 指明被遍历的文件夹 for parent,dirnames,filenames in os.walk(rootdir): #三个参数:分别返回1.父目录 2.所有文件夹名字( ...
分类:
编程语言 时间:
2016-10-27 19:39:58
阅读次数:
237
盯着看了半天,最后发现xml中少了一段说明话,为什么手贱自己写xml呢 错误信息: Exception in thread "main" java.lang.ExceptionInInitializerErrorCaused by: java.lang.RuntimeException: Error ...
分类:
其他好文 时间:
2016-10-27 18:56:08
阅读次数:
276
http://www.cnblogs.com/pony1993/archive/2012/07/18/2596730.html 字典树(Trie树) 字典树,又称单词查找树,Trie树,是一种树形结构,典型应用是用于统计,排序和保存大量的字符串,所以经常被搜索引擎系统用于文本词频统计。它的优点是:利 ...
分类:
其他好文 时间:
2016-10-27 13:21:05
阅读次数:
298
查看当前系统版本是否支持 当前,nginx发布包支持以下Linux操作系统版本: RHEL/CentOS: Debian: Ubuntu: SLES: 我们可以在命令行输入命令 "cat /etc/os-release" 查看当前操作系统版本,如下所示: 可见,操作系统属于RHEL7.X,符合要求。 ...
分类:
系统相关 时间:
2016-10-27 12:46:06
阅读次数:
350
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2016-10-26 09:20:18
阅读次数:
212
Zookeeper 分布式服务框架是 Apache Hadoop 的一个子项目,它主要是用来解决分布式应用中经常遇到的一些数据管理问题,如:统一命名服务、状态同步服务、集群管理、分布式应用配置项的管理等。本文将从使用者角度详细介绍 Zookeeper 的安装和配置文件中各个配置项的意义,以及分析 Z ...
分类:
其他好文 时间:
2016-10-26 06:53:21
阅读次数:
217