2017年5月23日

DB Intro - MySQL and MongoDB

摘要: mysql> CREATE TABLE tutorials_tbl( tutorial_id INT, tutorial_title VARCHAR(100), tutorial_author VARCHAR(40), submission_date DATE, PRIMARY KEY ( tuto 阅读全文

posted @ 2017-05-23 17:28 fanbird2008 阅读(105) 评论(0) 推荐(0) 编辑

Algorithms Intro - Intro

摘要: http://www.36dsj.com/archives/21410 阅读全文

posted @ 2017-05-23 07:36 fanbird2008 阅读(78) 评论(0) 推荐(0) 编辑

2017年5月21日

Redis Intro - Skiplist

摘要: http://zhangtielei.com/posts/blog-redis-skiplist.html https://juejin.im/entry/59197a390ce4630069fbcf6a 阅读全文

posted @ 2017-05-21 21:59 fanbird2008 阅读(69) 评论(0) 推荐(0) 编辑

2017年5月19日

Redis Intro - Dict

摘要: https://segmentfault.com/a/1190000004850844 阅读全文

posted @ 2017-05-19 22:32 fanbird2008 阅读(72) 评论(0) 推荐(0) 编辑

2017年5月17日

Kafka Intro - Configuration

摘要: #Notes: /opt/kafka/config/zookeeper.properties sample # the directory where the snapshot is stored.dataDir=/tmp/zookeeper# the port at which the clien 阅读全文

posted @ 2017-05-17 19:38 fanbird2008 阅读(145) 评论(0) 推荐(0) 编辑

IOS Intro - NSDictionary and NSMutableDictionary

摘要: NSDictionary、NSMutableDictionary的基本用法 1.不可变词典NSDictionary 字典初始化 NSNumber *numObj = [NSNumber numberWithInt:100]; 以一个元素初始化 NSDictionary *dic = [NSDicti 阅读全文

posted @ 2017-05-17 11:57 fanbird2008 阅读(137) 评论(0) 推荐(0) 编辑

2017年5月15日

IOS Intro - UIWindow UIView and CALayer

摘要: UIWindow、UIView以及CALayer之间的关系2016-05-11 20:46 本站整理 浏览(16) UIWindow1.简介UIWindow是一种特殊的UIView,通常在一个app中只会有一个UIWindow。2.作用a.包含程序所有要显示的视图;b.传递手势消息到其它的UIVie 阅读全文

posted @ 2017-05-15 19:15 fanbird2008 阅读(98) 评论(0) 推荐(0) 编辑

2017年5月13日

std::map Intro

摘要: #include <queue>#include <map>#include <iostream>#include <string.h> class TestU {public: TestU(char *); ~TestU(); char *getData();private: char *data 阅读全文

posted @ 2017-05-13 18:42 fanbird2008 阅读(113) 评论(0) 推荐(0) 编辑

2017年5月11日

Hadoop Intro - Configure 01

摘要: hadoop配置文件详解、安装及相关操作 一、 Hadoop伪分布配置 1. 在conf/hadoop-env.sh文件中增加:export JAVA_HOME=/home/Java/jdk1.6 2. 在conf/core-site.xml文件中增加如下内容: <!-- fs.default.na 阅读全文

posted @ 2017-05-11 17:45 fanbird2008 阅读(118) 评论(0) 推荐(0) 编辑

Hadoop Intro - Configure

摘要: Hadoop学习(二) Hadoop配置文件参数详解 Hadoop运行模式分为安全模式和非安全模式,在这里,我将讲述非安全模式下,主要配置文件的重要参数功能及作用,本文所使用的Hadoop版本为2.6.4。 etc/hadoop/core-site.xml 参数 属性值 解释 fs.defaultF 阅读全文

posted @ 2017-05-11 17:43 fanbird2008 阅读(196) 评论(0) 推荐(0) 编辑

导航