码迷,mamicode.com
首页 >  
搜索关键字:tair    ( 137个结果
编程语言起源
CPL(Combined Programming Language) - 1963 CPL是1963年剑桥大学发明的 BCPL(Base Combined Programming Language) - 1967 剑桥的Matin Richards 对CPL做了简化,推出了BCPL B(B Prog ...
分类:编程语言   时间:2017-09-25 13:30:32    阅读次数:180
爬楼问题—递归、动态规划
问题:假设你正在爬楼梯,需要n步你才能到达顶部。但每次你只能爬一步或者两步,你能有多少种不同的方法爬到楼顶部? code: ...
分类:其他好文   时间:2017-09-24 23:41:55    阅读次数:249
前端算法相关
一、排序 二、堆栈、队列、链表 三、递归 四、波兰式和逆波兰式 ...
分类:编程语言   时间:2017-09-07 00:00:44    阅读次数:149
Github笔记(1)
学习目的: 借助GitHub托管项目代码 GitHub官方介绍: 中文:https://guides.github.com/activities/hello-world/ 英文:https://guides.github.com/activities/hello-world/ 基本概念: Repos ...
分类:其他好文   时间:2017-08-26 21:27:08    阅读次数:176
LeetCode 70:Climbing Stairs
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
分类:其他好文   时间:2017-07-30 11:32:17    阅读次数:121
87、使用TensorBoard进行可视化学习
1、还是以手写识别为类,至于为什么一直用手写识别这个例子,原因很简单,因为书上只给出了这个类子呀,哈哈哈,好神奇 下面是可视化学习的标准函数 下面是封装mnist_inference和mnist_train的函数 mnist_train 最后train的结果如下所示 可视化学习的过程,将log写在/ ...
分类:其他好文   时间:2017-05-24 10:04:02    阅读次数:815
leetcode-441. Arranging Coins
441. Arranging Coins You have a total of n coins that you want to form in a staircase shape, where every k-th row must have exactly k coins. Given n, ...
分类:其他好文   时间:2017-03-19 17:33:19    阅读次数:231
淘宝开源Key/Value结构数据存储系统Tair技术剖析
摘要: Tair的功能 Tair是一个Key/Value结构数据的解决方案,它默认支持基于内存和文件的两种存储方式,分别和我们通常所说的缓存和持久化存储对应。 Tair除了普通Key/Value系统提供的功能,比如get、put、delete以及批量接口外,还有一些附加的实用功能,使得其有更广的适用 ...
分类:其他好文   时间:2017-03-15 22:44:27    阅读次数:322
爬楼梯
public class Solution { /** * @param n: An integer * @return: An integer */ public int climbStairs(int n) { // write your code here if(n==1) return 1; ...
分类:其他好文   时间:2017-03-14 19:24:09    阅读次数:121
Memcached、Redis OR Tair
一、前言 非关系型数据库(NoSQL = Not Only SQL)的产品非常多,常见的有Memcached、Redis、MongoDB等优秀开源项目,相关概念和资料网上也非常丰富,不再重复描述,本文主要引入Memcached和Redis与淘宝开源Tair分布式存储进行对比测试,由于各自适用场景不同 ...
分类:系统相关   时间:2017-03-12 11:37:41    阅读次数:267
137条   上一页 1 ... 4 5 6 7 8 ... 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!