码迷,mamicode.com
首页 >  
搜索关键字:store buffer    ( 10258个结果
设计模式——装饰器模式
装饰器模式(Decorator Pattern)允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。 装饰器模式结构图 Component(抽象构件) :它是装饰类和具体构件的公共父类(一般是接口或者抽象类); ConcreteComp ...
分类:其他好文   时间:2020-03-16 14:34:07    阅读次数:50
MySQL 聚集索引和二级索引
Clustered and Secondary Indexes(聚集索引和二级索引) Every InnoDB table has a special index called the clustered index where the data for the rows is stored. Ty ...
分类:数据库   时间:2020-03-16 14:29:24    阅读次数:84
字符串表示与转换
windows 编程中,存在几种字符串表示方式,包括: 1)C-Style 字符串 char* / wchar_t*; 2)C++ STL 字符串 std::string / std::wstring; 3) ATL/MFC 字符串 CStringA / CStringW; 以上每个版本都有对应的多 ...
分类:其他好文   时间:2020-03-16 12:54:00    阅读次数:71
代理_nginx_proxy
192.168.3.222 nginx+php 略 192.168.3.22 mariadb 略 192.168.3.21 proxy_nginx 21host:安装nginx [root@localhost conf.d]# cat /etc/nginx/proxy_params proxy_se ...
分类:其他好文   时间:2020-03-15 20:31:59    阅读次数:76
Kubernetes Volume 类型介绍
前言 概念 块存储、文件存储、对象存储 分布式存储 NAS 网络存储 常见 Volume 类型 awsElasticBlockStore Amazon Elastic Block Store(EBS)是一种易于使用的高性能数据块存储服务。EBS 提供四种不同的卷类型,价位和性能水平各不相同,让您能够 ...
分类:Web程序   时间:2020-03-15 20:29:25    阅读次数:87
Spark 累加器使用
1.使用foreach碰到了问题 没看过累加器的时候,写了这么个代码,发现map里头foreach完了还是0啊?咋回事啊? 1 def calNrOfEachDataMap(data:RDD[String],neededDataMap:Set[Map[Int,String]]): Map[Map[I ...
分类:其他好文   时间:2020-03-15 10:10:54    阅读次数:163
vue cli3 和 vue cli4
最近安装了vue cli4, 和vue cli3做下对比。我自己手动选择的配置, 安装了Router,Vuex 我安装的版本是@vue/cli 4.2.3 一.项目结构 左边为vue cli3, 右边为vue cli4 默认目录结构已更改 src/store.js 改为 src/store/inde ...
分类:其他好文   时间:2020-03-15 09:20:15    阅读次数:273
React-redux: React.js 和 Redux 架构的结合
通过Redux 架构理解我们了解到 Redux 架构的 store、action、reducers 这些基本概念和工作流程。我们也知道了 Redux 这种架构模式可以和其他的前端库组合使用,而 React-redux 正是把 Redux 这种架构模式和 React.js 结合起来的一个库。 Cont ...
分类:Web程序   时间:2020-03-14 23:42:56    阅读次数:72
[记录] Disruptor 介绍
Dissecting the Disruptor: What's so special about a ring buffer? Trisha's Ramblings: Dissecting the Disruptor: Why it's so fast (part one) - Locks Are ...
分类:其他好文   时间:2020-03-14 15:06:15    阅读次数:70
vuex 封装
main.js import Vue from 'vue' import App from './App' import router from './router' import store from './store/index' import ElementUI from 'element-u ...
分类:其他好文   时间:2020-03-14 13:21:02    阅读次数:111
10258条   上一页 1 ... 79 80 81 82 83 ... 1026 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!