上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 455 下一页
Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)接着需要快速的调研下基于Spring框架下的Redis操作。相关链接:Redis实战 Redis实战之Redis + Jedis Redis实战之征服 Redis + Jedis + Spring (一)Redis实战之征服 Redis + Jedis + Spring (二)Redis实战之征服 Redis + Jedis + Spring (三)前文有述,Spring提供了对于Redis的专门支持:spring-data-redis。此外,类似的还有: 我想大部分人对spring-da Read More
posted @ 2013-08-03 22:17 javawebsoa Views(6951) Comments(0) Diggs(0) Edit
不得不说,用哈希操作来存对象,有点自讨苦吃!不过,既然吃了苦,也做个记录,也许以后API升级后,能好用些呢?!或许,是我的理解不对,没有真正的理解哈希表。相关链接:Redis实战 Redis实战之Redis + Jedis Redis实战之征服 Redis + Jedis + Spring (一)Redis实战之征服 Redis + Jedis + Spring (二)Redis实战之征服 Redis + Jedis + Spring (三)一、预期接上一篇,扩充User属性:Java代码 publicclassUserimplementsSerializable{privatestatic. Read More
posted @ 2013-08-03 22:15 javawebsoa Views(597) Comments(0) Diggs(0) Edit
一开始以为Spring下操作哈希表,列表,真就是那么土。恍惚间发现“stringRedisTemplate.opsForList()”的强大,抓紧时间恶补下。通过spring-data-redis完成LINDEX, LLEN, LPOP, LPUSH, LRANGE, LREM, LSET, LTRIM, RPOP, RPUSH命令。其实还有一些命令,当前版本不支持。不过,这些List的操作方法可以实现队列,堆栈的正常操作,足够用了。相关链接:Redis实战 Redis实战之Redis + Jedis Redis实战之征服 Redis + Jedis + Spring (一)Redis实战之征 Read More
posted @ 2013-08-03 22:13 javawebsoa Views(739) Comments(0) Diggs(0) Edit
递推公式很简单:C(n,k+1) = C(n,k) * (n-k) / (k + 1)方法很暴力经测,C(2000,1000)可以求出,C(2000,0)到C(2000,2000)所用时间仅需0.2s#include #include #include #include #include #include using namespace std;const int MAXD = 100, DIG = 9, BASE = 1000000000;const unsigned long long BOUND = numeric_limits :: max () - (unsigned long l. Read More
posted @ 2013-08-03 22:11 javawebsoa Views(249) Comments(0) Diggs(0) Edit
Problem Description In mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. For example, the sequence is a subsequence of . (http://en.wikipedia.org/wiki/Subsequence) Given a string S... Read More
posted @ 2013-08-03 22:09 javawebsoa Views(231) Comments(0) Diggs(0) Edit
日前,阿里巴巴单方面做出一个艰难的决定,将暂停微信第三方应用推荐服务。不甘在微信5.0时代被“阉割”的阿里已经完成了微淘的内测工作,不少通过微信做服务平台的运营者对微淘表示出兴趣。随着微博和淘宝不断加大结合力度,此次微信事件不过是阿里移动电商布局的一角而已,但受到影响的微信淘宝客们该怎么做?个人感觉所谓的“封杀”,看似严重,其实中间还有误会。之前聚划算还在和皮皮精灵有合作微信项目,也看好微信方面的运营工作。如果是单单是由于和微博的合作,实在有些说不过去。倒是微信方面一直抵制虚假的淘宝广告,曾封停了不少推送、营销虚假广告的微信公众号。 微信5.0升级“扫一扫”功能,才是阿里的“肉中刺” 阿里对此 Read More
posted @ 2013-08-03 22:07 javawebsoa Views(392) Comments(0) Diggs(0) Edit
在7月10日上传互联网的”基础微积分后记(Epilogue)“袖珍电子书中,J.Keisler将微积分学创立初期分为三个类型: (1) The ratio of an infinitesimal change in y to an infinitesimal change in x ( The infinitesimal method.) (2) The limit of the ratio of the change in y to the change in x, Δy/Δx, as Δx approaches zero. (The limit method.) (3) The velo. Read More
posted @ 2013-08-03 22:05 javawebsoa Views(517) Comments(0) Diggs(0) Edit
Java split用法 java.lang.string.split split 方法 将一个字符串分割为子字符串,然后将结果作为字符串数组返回。 stringObj.split([separator,[limit]]) stringObj 必选项。要被分解的 String 对象或文字。该对象不会被 split 方法修改。 separator 可选项。字符串或 正则表达式 对象,它标识了分隔字符串时使用的是一个还是多个字符。如果忽 略该选项,返回包含整个字符串的单一元素数组。 limit 可选项。该值用来限制返回数组中的元... Read More
posted @ 2013-08-03 22:03 javawebsoa Views(274) Comments(0) Diggs(0) Edit
题目:点击打开链接多校练习赛4的简单题,但是比赛的时候想到了推导公式f(n)=f(n-1)+f(n-2)(就是斐波那契数列),最后却没做出来。首先手写一下he(不是hehe)连续时的规律。0-1 1-1 2-2 3-3 4-5,斐波那契无误。比赛的时候没有分清楚连续的he和间断的he的不同,只有连续的he才能用斐波那契数列来表示,而间断点应该重新计算he出现的次数,最后根据组合数的原理相乘,即可得到最终的答案。//dp,但是找规律也可以发现连续的是FIb数列. #include #include using namespace std;long long tar[10100];void cre Read More
posted @ 2013-08-03 22:01 javawebsoa Views(229) Comments(0) Diggs(0) Edit
公司今年把校招的30多个人,从北京、成都、合肥都集中到南京做了一个三个星期的软工入职培训。所以,这这里我认识和接触了很多跟我一起刚入职的新人。偶尔也聊聊天。一、问:“你做过后台吗?”,“为什么要选择做客户端?”。大家有时候认为,后台才是编程。认为如android开发之类的都是特别简单的事情,没什么技术含量。其实,做编程的人都知道。所谓编程,无非就是数据和界面。无论你什么样的软件,在开发人员眼中就是一堆数据和展现方式而已。从大二下学期开始接触jsp/servlet ,到后来的SSH2框架,做多了就感觉特别的没意思。配置完成之后,就剩下一些数据的set,get了。做网页不是自己的强项,所以每此花费 Read More
posted @ 2013-08-03 21:59 javawebsoa Views(217) Comments(0) Diggs(0) Edit
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 455 下一页