原文 :http://blog.csdn.net/chszs/article/details/40623169 1、软件准备 Ubuntu14.04 x64 下载SecureCRT7.3的版本:scrt-7.3.3-779.ubuntu13-64.x86_64.deb 2、安装SecureCRT 在 ...
分类:
系统相关 时间:
2016-11-30 13:59:57
阅读次数:
271
一、why(为什么要用Hibernate缓存?) Hibernate是一个持久层框架,经常访问物理数据库。 为了降低应用程序对物理数据源访问的频次,从而提高应用程序的运行性能。 缓存内的数据是对物理数据源中的数据的复制,应用程序在运行时从缓存读写数据,在特定的时刻或事件会同步缓存和物理数据源的数据。 ...
分类:
Web程序 时间:
2016-11-30 09:30:40
阅读次数:
205
Time Complexity: O(N) The depth of the directory/file is calculated by counting how many "\t"s are there.The time complexity is O(n) because each subs ...
分类:
其他好文 时间:
2016-11-30 07:47:50
阅读次数:
187
DJEmotionListView.m DJEmotionPageView.m 最终效果: ...
分类:
其他好文 时间:
2016-11-30 03:54:26
阅读次数:
149
https://en.wikipedia.org/wiki/Euler's_totient_function counts the positive integers up to a given integer n that are relatively prime to n. if two num ...
分类:
其他好文 时间:
2016-11-30 03:18:14
阅读次数:
154
题目: A binary watch has 4 LEDs on the top which represent the hours (0-11), and the 6 LEDs on the bottom represent the minutes (0-59). Each LED represe ...
分类:
编程语言 时间:
2016-11-29 23:02:49
阅读次数:
175
Til the Cows Come Home Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 46859 Accepted: 15941 Description Bessie is out in the field and wan ...
分类:
其他好文 时间:
2016-11-29 22:35:18
阅读次数:
205
第一、按词条搜索 - TermQuery query = new TermQuery(new Term("name","word1"));hits = searcher.search(query); 这样就可以把 field 为 name 的所有包含 word1 的文档检索出来了。 第二、“与或”搜 ...
分类:
Web程序 时间:
2016-11-29 22:33:18
阅读次数:
214