码迷,mamicode.com
首页 >  
搜索关键字:max flow    ( 27384个结果
MYSQL5.5和5.6参数的差异
performance_schema在 MySQL 5.6 中默认是开启的,但相关的很多参数相比 MySQL 5.5 却是降低了,例如 performance_schema 自动调整到 445 个表和 224 线程,比 MySQL 5.5 低。尽管默认 max_connections 只是 150 ...
分类:数据库   时间:2014-06-28 11:59:15    阅读次数:361
Cache-control
网页的缓存是由HTTP消息头中的“Cache-control”来控制的,常见的取值有private、no-cache、max-age、must-revalidate等,默认为private。其作用根据不同的重新浏览方式分为以下几种情况:(1)打开新窗口如果指定cache-control的值为priv...
分类:其他好文   时间:2014-06-28 10:51:42    阅读次数:157
[转]Request Flow for Provisioning Instance in Openstack
One of the most important use-case in any cloud is provisioning a VM . In this article we shall do a walk through about an instance(VM) being provisio...
分类:其他好文   时间:2014-06-21 16:59:43    阅读次数:376
[开源]起步,这只是一个开始。开源Qoss Flow Engine项目pre-alpha版本
迈开的第一步,至少证明已然开始。 这还只是以个pre-alpha的版本,意味着,它目前就根本没有多少功能,它也许只还有那一点点尚未搭建完成的骨头架子,但它会慢慢成长。 ….. 哈哈,废话真多。步入正题吧。 1. Qoss Flow Engine是什么? Qoss其实它的定位是一个开源的BPM(Bus...
分类:其他好文   时间:2014-06-21 16:27:14    阅读次数:232
算法导论三剑客之 动态规划 0-1背包问题
1 #include "iostream" 2 using namespace std; 3 4 float MAX(float m1,float m2){ 5 if(m1>=m2) 6 return m1; 7 else 8 return m2;...
分类:其他好文   时间:2014-06-21 16:05:31    阅读次数:205
Openvswtich 学习笔记
场景: 创建一个Virtual Switch,支持VLAN,支持MAC-Learning 包含下面四个Port: P1, truck port P2, VLAN 20 P3, P4 VLAN 30 包含五个flow table: Table 0: Admission control. Table 1...
分类:其他好文   时间:2014-06-21 15:51:51    阅读次数:295
[转]Network flow monitoring with Open vSwitch
With network virtualization, the software switches (such as Open vSwitch) on the servers act like the edge switches. So, to gain insights into the net...
分类:Web程序   时间:2014-06-21 15:34:13    阅读次数:324
Openvswitch手册(2)
我们这一节主要来看Controller Controller有两种: Primary Controller: 真正控制vswitch的flow table,vswitch会保持和controller的连接,如果失败,取决于bridge的fail mode。一个vswitch可以连接多个Control...
分类:其他好文   时间:2014-06-21 15:24:44    阅读次数:270
Openvswitch手册(3)
这一节,我们重点看sFlow 采样流sFlow(Sampled Flow)是一种基于报文采样的网络流量监控技术,主要用于对网络流量进行统计分析。 sFlow系统包含一个嵌入在设备中的sFlow Agent和远端的sFlow Collector。其中,sFlow Agent通过sFlow采样获取本设备...
分类:其他好文   时间:2014-06-21 14:58:59    阅读次数:232
Openvswitch手册(1)
Openvswitch是一个virutal swtich, 支持Open Flow协议,当然也有一些硬件Switch也支持Open Flow协议,他们都可以被统一的Controller管理,从而实现物理机和虚拟机的网络联通。 Open Switch定义了一系列Flow Table,通过它来控制包的流...
分类:其他好文   时间:2014-06-21 14:54:57    阅读次数:248
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!