码迷,mamicode.com
首页 >  
搜索关键字:reads    ( 984个结果
Gym - 101806Q:QueryreuQ(第一次写回文树)
A string is palindrome, if the string reads the same backward and forward. For example, strings like "a", "aa", "appa", "queryreuq" are all palindrome ...
分类:其他好文   时间:2019-02-05 18:08:05    阅读次数:232
学习网站记录
1、线程系列 2、JVM 3、servlet/JSP系列 4、Redis系列 5、并发框架Disruptor 6、MongoDB 1)MongoDB基础教程系列 2)MongoDB 分片集群技术 3)MongoDB的事务、ACID和一致性 4)MongoDB WriteConcern(写关注)机制 ...
分类:Web程序   时间:2019-02-04 01:07:27    阅读次数:213
POJ 3784 Running Median
Description For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, outpu ...
分类:其他好文   时间:2019-01-30 07:31:02    阅读次数:152
通过sql的DMV查看数据库使用状态
通过sql的DMV查看数据库使用状态 ...
分类:数据库   时间:2019-01-28 19:19:25    阅读次数:157
JVM调优常用参数和注意点备忘录
本文主要是工作过程中总结的一些jvm调优的参数和注意的地方,作为一个备忘录,先占个坑,有时间在来细化具体的实例。 1. gc日志是覆盖的方式如果文件名字固定会导致上一次被覆盖可以采用这个 Xloggc:backv2_gc_%t.log 2. jinfo 可以动态修改java XX:+PrintFla ...
分类:其他好文   时间:2019-01-28 10:45:50    阅读次数:421
JAVA线程池原理源码解析—为什么启动一个线程池,提交一个任务后,Main方法不会退出?
起因publicstaticvoidmain(String[]args){ExecutorServiceservice=Executors.newFixedThreadPool(10);service.submit(()->System.out.println("Hello"));System.out.println("World");}呵呵,执行结果谁都知道,显而易见结论线程池的创建的时候
分类:编程语言   时间:2019-01-25 18:49:53    阅读次数:322
Redis 主从配置和参数详解
安装redis redis.conf相关参数 maxheap 1024000000 注意:参数说明中用红色标志的参数是比较重要的参数。 参数这部分参考:http://www.cnblogs.com/wenanry/archive/2012/02/26/2368398.html 配置redis主从 主 ...
分类:其他好文   时间:2019-01-23 17:10:45    阅读次数:213
leetcode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Example 3: ...
分类:其他好文   时间:2019-01-22 23:03:56    阅读次数:313
flask 数据库连接池
- python数据库连接池 - 如果每一个请求过来就创建一个链接这样效率会很低,所以需要建立连接池 - DBUtils是python的一个用于实现数据库连接池的模块 - 创建数据库连接池 - 为每个线程创建一个连接,线程即使调用了close方法,也不会关闭,只是把连接重新放到连接池,供自己线程再次 ...
分类:数据库   时间:2019-01-14 23:08:49    阅读次数:353
使用CBrother做TCP服务器与C++客户端通信
使用CBrother脚本做TCP服务器与C++客户端通信   工作中总是会遇到一些对于服务器压力不是特别大,但是代码量比较多,用C++写起来很不方便。对于这种需求,我选择用CBrother脚本做服务器,之所以不选择Python是因为python的语法我实在是适应不了,再来CBrother的网络框架也... ...
分类:编程语言   时间:2019-01-14 23:00:54    阅读次数:483
984条   上一页 1 ... 23 24 25 26 27 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!