DataCube Data Analysis With Mongodb.

Size: px
Start display at page:

Download "DataCube Data Analysis With Mongodb."

Transcription

1 DataCube Data Analysis With Mongodb

2 datacube.taobao.com

3 shu.taobao.com

4 Project 数据化运营平台 首页 客户信息 类目信息 潜在用户 产品监控 运营工具

5 Agenda Offline Data Analysis Realtime Data Analysis New Aggregation Framework

6 Offline Data Analysis 异构数据源的 ETL 过程 基于 map/reduce 数据处理 CRUD create/read/update/delete

7 异构数据源的 ETL 过程

8 mongodb mysql 云梯

9 CRUD

10 try.mongodb.org

11 e.g: meta_user_info { } id : 1471, last_login_ip: , userversion: 2

12 Create mysql insert into meta_user_info(id, last_login_ip, userverion) values(1471, , 2) mongodb db.meta_user_info.save({ id: 1471, last_login_ip: , userversion: 2 }); db.meta_user_info.insert({id: 1471, last_login_ip: , userversion: 2 }); Any different?

13 Read mysql select last_login_ip, userversion from meta_user_info where id = 1471 mongodb db.meta_user_info.find({id: 1471}, {last_login_ip: 1, userversion: 1, _id: 0}) More info? sure

14 Enable Query Index db.user.ensureindex({id: 1})

15 query options Field Selection db.meta_user_info.find({id: 1471}) Sorting db.meta_user_info.find().sort({id: 1}) Skip and Limit db.meta_user_info.find().skip(1).limit(10) Ref:

16 Update mysql update meta_user_info set ip = where id = 1471 mongodb db.meta_user_info.update({id: 1471}, {$set: {ip: }}) Syntax: db.collection.update( criteria, objnew, upsert, multi ) Ref:

17 More about update In place update Read before update Care about multi option

18 delete mysql delete from meta_user_info where id = 1471 Monogdb db.meta_user_info.remove({id: 1471}) Ref:

19 Optimizition Enabling Profiling setprofilinglevel/getprofilingstatus 0 - off 1 - log slow operations (by default, >100ms is considered slow) 2 - log all operations Checking with explain

20 基于 map/reduce 数据处理

21 mapreduce map reduce query sort limit out finalize scope Syntax

22 e.g: topic { } title : "datacube data analysis using mongodb", speaker : { name : " SongheYang", address : Hangzhou" }, datetime : new Date(), ppt_pages : 30, tags : [ "mongodb2012", "admaster", "beijing" ]

23 Distinct var userlog_distinct_map = function() { }; emit(this.username, 1); var userlog_distinct_reduce = function(key, values) { }; return values[0];

24 Group var userlog_group_map = function() { emit(this.username, 1); }; var userlog_group_reduce = function(key, values) { var count = 0; for (index in values) { count += values[index]; } return count; };

25 var command = { mapreduce : in_coll_name, map : userlog_map.tostring(), reduce : userlog_reduce.tostring(), out : {replace : out_coll_name} };

26 Realtime Data Analysis Capped Collection a. fixed size b. fifo c. no _id index d. no delete, can drop it first Storm a. distributed b. realtime compute system c. fault-tolerant

27 Data Processing Code MongoSpout PvBolt/UvBolt OutputMongoBolt

28 New Aggregation Framework pipeline a. sequence of operators b. process a stream of documents expression a. calculate values

29 Pipeline Operators $project $match $limit $skip $unwind $group $sort

30 Expressions Comparison Operators $cmp, $eq Boolean Operators $and, $or Arithmetic Operators $add, $mod String Operators $substr, $toupper Date Operators $dayofmonth, $hour

31 $match db.runcommand({ aggregate : "topic", pipeline : [ { $match : { "speaker.name" : "Songhe Yang" } }] });

32

33 $project db.runcommand({ aggregate : "topic", pipeline : [ { $project : { _id : 0, title : 1, datetime : 1 } }] });

34

35 $project db.runcommand({ aggregate : "topic", pipeline : [ { $project : { _id : 0, title : 1, datetime : 1, name: "$speaker.name" } }] });

36

37 $unwind db.runcommand({ aggregate : "topic", pipeline : [ { $unwind : "$tags" } ] });

38

39 $group db.runcommand({ aggregate : "topic", pipeline : [ { $project: { _id : 0, speaker : 1, tags : 1 } }, { $unwind : "$tags" }, { $group : { _id : "$tags", count : { $sum : 1 }, authors : { $addtoset : "$speaker.name" } } }] });

40

41

HBase 在 hulu 的使用和实践. hulu

HBase 在 hulu 的使用和实践. hulu HBase 在 hulu 的使用和实践 张虔熙 @ hulu qianxi.zhang@hulu.com About hulu About me 张虔熙 ü 软件工程师 @Hulu 大数据平台组 ü 专注于分布式计算和存储技术 ü 热衷于参与开源社区贡献代码 üqianxi.zhang@hulu.com Agenda Overview Audience Platform( 用户画像系统 ) Auto

More information

Course Content MongoDB

Course Content MongoDB Course Content MongoDB 1. Course introduction and mongodb Essentials (basics) 2. Introduction to NoSQL databases What is NoSQL? Why NoSQL? Difference Between RDBMS and NoSQL Databases Benefits of NoSQL

More information

The course modules of MongoDB developer and administrator online certification training:

The course modules of MongoDB developer and administrator online certification training: The course modules of MongoDB developer and administrator online certification training: 1 An Overview of the Course Introduction to the course Table of Contents Course Objectives Course Overview Value

More information

Aggregation in MongoDB. Overview. Pipelining. .. Cal Poly CPE/CSC 369: Distributed Computations Alexander Dekhtyar..

Aggregation in MongoDB. Overview. Pipelining. .. Cal Poly CPE/CSC 369: Distributed Computations Alexander Dekhtyar.. .. Cal Poly CPE/CSC 369: Distributed Computations Alexander Dekhtyar.. Overview Aggregation in MongoDB MongoDB as a powerful aggregation and pipelining framework that allows for multple operations to take

More information

云计算入门 Introduction to Cloud Computing GESC1001

云计算入门 Introduction to Cloud Computing GESC1001 Lecture #6 云计算入门 Introduction to Cloud Computing GESC1001 Philippe Fournier-Viger Professor School of Humanities and Social Sciences philfv8@yahoo.com Fall 2017 1 Introduction Last week: how cloud applications

More information

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2019 1 Introduction Philippe Fournier-Viger

More information

测试基础架构 演进之路. 茹炳晟 (Robin Ru) ebay 中国研发中心

测试基础架构 演进之路. 茹炳晟 (Robin Ru) ebay 中国研发中心 测试基础架构 演进之路 茹炳晟 (Robin Ru) ebay 中国研发中心 茹炳晟 (Robin Ru) 主要工作经历 : ebay 中国研发中心 -- 测试基础架构技术主管 Hewlett-Packard 惠普软件 ( 中国 ) 研发中心 -- 测试架构师 资深测试专家 Alcatel-Lucent 阿尔卡特朗讯 ( 上海 ) 研发中心 -- 测试技术主管 Cisco 思科 ( 中国 ) 研发中心

More information

Apache OpenWhisk + Kubernetes:

Apache OpenWhisk + Kubernetes: Apache OpenWhisk + Kubernetes: A Perfect Match for Your Serverless Platform Ying Chun Guo guoyingc@cn.ibm.com Zhou Xing xingzhou@qiyi.com Agenda What is serverless? Kubernetes + Apache OpenWhisk Technical

More information

Machine Vision Market Analysis of 2015 Isabel Yang

Machine Vision Market Analysis of 2015 Isabel Yang Machine Vision Market Analysis of 2015 Isabel Yang CHINA Machine Vision Union Content 1 1.Machine Vision Market Analysis of 2015 Revenue of Machine Vision Industry in China 4,000 3,500 2012-2015 (Unit:

More information

第二小题 : 逻辑隔离 (10 分 ) OpenFlow Switch1 (PC-A/Netfpga) OpenFlow Switch2 (PC-B/Netfpga) ServerB PC-2. Switching Hub

第二小题 : 逻辑隔离 (10 分 ) OpenFlow Switch1 (PC-A/Netfpga) OpenFlow Switch2 (PC-B/Netfpga) ServerB PC-2. Switching Hub 第二小题 : 逻辑隔离 (10 分 ) 一 实验背景云平台服务器上的不同虚拟服务器, 分属于不同的用户 用户远程登录自己的虚拟服务器之后, 安全上不允许直接访问同一局域网的其他虚拟服务器 二 实验目的搭建简单网络, 通过逻辑隔离的方法, 实现用户能远程登录局域网内自己的虚拟内服务器, 同时不允许直接访问同一局域网的其他虚拟服务器 三 实验环境搭建如图 1-1 所示, 我们会创建一个基于 OpenFlow

More information

1. Spring 整合 Jdbc 进行持久层开发

1. Spring 整合 Jdbc 进行持久层开发 本章学习目标 小风 Java 实战系列教程 Spring 整合 Jdbc 进行持久层开发 Spring 事务管理的 XML 方式 Spring 事务管理的注解方式 Spring 事务管理的零配置方式 1. Spring 整合 Jdbc 进行持久层开发 1.1. JdbcTemplate 的基本使用 JdbcTemplate 类是 Spring 框架提供用于整合 Jdcb 技术的工具类 这个工具类提

More information

Chapter 1 (Part 2) Introduction to Operating System

Chapter 1 (Part 2) Introduction to Operating System Chapter 1 (Part 2) Introduction to Operating System 张竞慧办公室 : 计算机楼 366 室电邮 :jhzhang@seu.edu.cn 主页 :http://cse.seu.edu.cn/personalpage/zjh/ 电话 :025-52091017 1.1 Computer System Components 1. Hardware provides

More information

1. DWR 1.1 DWR 基础 概念 使用使用 DWR 的步骤. 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架

1. DWR 1.1 DWR 基础 概念 使用使用 DWR 的步骤. 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架 1. DWR 1.1 DWR 基础 1.1.1 概念 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架 2 作用 使用 DWR, 可以直接在 html 网页中调用 Java 对象的方法 ( 通过 JS 和 Ajax) 3 基本原理主要技术基础是 :AJAX+ 反射 1) JS 通过 AJAX 发出请求, 目标地址为 /dwr/*, 被 DWRServlet(

More information

云计算入门 Introduction to Cloud Computing GESC1001

云计算入门 Introduction to Cloud Computing GESC1001 Lecture #3 云计算入门 Introduction to Cloud Computing GESC1001 Philippe Fournier-Viger Professor School of Humanities and Social Sciences philfv8@yahoo.com Fall 2018 1 Course schedule Part 1 Part 2 Part 3 Introduction

More information

Group-B Assignment No. 15

Group-B Assignment No. 15 Group-B Assignment No. 15 R N Oral Total Dated Sign (2) (5) (3) (10) Title of Assignment: aggregation and indexing using MongoDB. Problem Definition: Aggregation and indexing with suitable example using

More information

上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分

上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分 上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分 SGM IT < 上汽通用汽车供应商门户网站项目 (SGMSP)> 工作产品名称 :< User Guide 用户手册 > Current Version: Owner: < 曹昌晔 > Date Created:

More information

HAWQ. MPP SQL for HDFS of Hadoop 基于 Hadoop 原生 HDFS 的大规模并行 SQL

HAWQ. MPP SQL for HDFS of Hadoop 基于 Hadoop 原生 HDFS 的大规模并行 SQL HAWQ MPP SQL for HDFS of Hadoop 基于 Hadoop 原生 HDFS 的大规模并行 SQL HAWQ Is The Enterprise platform that provides the fewest barriers, lowest risk, most cost effective and fastest way to enter in to big data

More information

Evolution of Transparent Computing with UEFI - Intel s Practice on TC. Lu Ju Director, Platform Software Infrastructure, Intel Asia Pacific R&D Ltd

Evolution of Transparent Computing with UEFI - Intel s Practice on TC. Lu Ju Director, Platform Software Infrastructure, Intel Asia Pacific R&D Ltd Evolution of Transparent Computing with UEFI - Intel s Practice on TC Lu Ju Director, Platform Software Infrastructure, Intel Asia Pacific R&D Ltd Agenda TC - the Retrospective UEFI - the Review & Update

More information

A Benchmark For Stroke Extraction of Chinese Characters

A Benchmark For Stroke Extraction of Chinese Characters 2015-09-29 13:04:51 http://www.cnki.net/kcms/detail/11.2442.n.20150929.1304.006.html 北京大学学报 ( 自然科学版 ) Acta Scientiarum Naturalium Universitatis Pekinensis doi: 10.13209/j.0479-8023.2016.025 A Benchmark

More information

Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板

Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板 Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板 INTERFACE PORTFOLIO PG 03 Relays 继电器 Intelligent Interface Technology 智能转换技术 Passive Interface Technology

More information

Silverlight 3 概览 俞晖市场推广经理微软 ( 中国 ) 有限公司

Silverlight 3 概览 俞晖市场推广经理微软 ( 中国 ) 有限公司 Silverlight 3 概览 俞晖市场推广经理微软 ( 中国 ) 有限公司 business opportunity 越来越丰富 MTV.COM (1996) CSS FLASH 4.0 AJAX HTML 3.2 DHTML SSL 3.0 FLASH 1.0 REAL AUDIO HTML 1.0 MTV.COM (2008) Silverlight 概览 跨浏览器 IE, Safari,

More information

UK-China Science Bridges: R&D of 4G Wireless Mobile Communications. An Introduction of Shanghai Research Center for Wireless Communications (WiCO)

UK-China Science Bridges: R&D of 4G Wireless Mobile Communications. An Introduction of Shanghai Research Center for Wireless Communications (WiCO) UK-China Science Bridges: R&D of 4G Wireless Mobile Communications An Introduction of Shanghai Research Center for Wireless Communications (WiCO) Outline About WiCO National Key Special Programs in Science

More information

Mysqldump Schema Only No Lock

Mysqldump Schema Only No Lock Mysqldump Schema Only No Lock The mysqldump command can also generate output in CSV, other delimited text, or XML If no character set is specified, mysqldump uses utf8. o --no-set-names, also is specified,

More information

基于 Davinci 平台的视频应用开发 沈燕飞

基于 Davinci 平台的视频应用开发 沈燕飞 基于 Davinci 平台的视频应用开发 沈燕飞 DaVinci 技术发布里程图 2 达芬奇五大类平台及目标应用 3 TMS320DM6446/3 处理器构架 4 TMS320DM643x 处理器构架 5 DM355 实现便携式应用的创新 6 TMS320DM648/DM647 处理器 7 TMS320DM6467 芯片内部框图 8 实现多格式高清转码功能解决方案 9 DVSDK 工具链 } 完整的开发系统

More information

ICP Enablon User Manual Factory ICP Enablon 用户手册 工厂 Version th Jul 2012 版本 年 7 月 16 日. Content 内容

ICP Enablon User Manual Factory ICP Enablon 用户手册 工厂 Version th Jul 2012 版本 年 7 月 16 日. Content 内容 Content 内容 A1 A2 A3 A4 A5 A6 A7 A8 A9 Login via ICTI CARE Website 通过 ICTI 关爱网站登录 Completing the Application Form 填写申请表 Application Form Created 创建的申请表 Receive Acknowledgement Email 接收确认电子邮件 Receive User

More information

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2018 1 Last week What is Information Retrieval

More information

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2019 1 Last week We have discussed: A

More information

Intel Atom quad-core x5-z8350 (1.44 GHz) 32/64 GB (default 32 GB) Windows 10 IoT Enterprise, Android 6.0

Intel Atom quad-core x5-z8350 (1.44 GHz) 32/64 GB (default 32 GB) Windows 10 IoT Enterprise, Android 6.0 AIM-65 LAN + COM 其他模块 配件可视应用方式客製化 C U L CLASSIFIED US Intel Atom quad-core x5-z8350 (1.44 GHz) 2/4 GB (default 2 GB) Windows 10 IoT Enterprise, Android 6.0 emmc 32/64 GB (default 32 GB) SD 1 x Micro SD

More information

AvalonMiner Raspberry Pi Configuration Guide. AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide

AvalonMiner Raspberry Pi Configuration Guide. AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide 简介 我们通过使用烧录有 AvalonMiner 设备管理程序的树莓派作为控制器 使 用户能够通过控制器中管理程序的图形界面 来同时对多台 AvalonMiner 6.0 或 AvalonMiner 6.01 进行管理和调试 本教程将简要的说明 如何把 AvalonMiner

More information

绝佳的并行处理 - FPGA 加速的根本基石

绝佳的并行处理 - FPGA 加速的根本基石 赛灵思技术日 XILINX TECHNOLOGY DAY 绝佳的并行处理 - 加速的根本基石 朱勇赛灵思大中华区业务拓展总监 2019 年 3 月 19 日 加速 : 大幅提升应用的性能 Without acceleration CPU func1 func2 func3 func4 With acceleration CPU func1 func3 func4 func2 handles compute-intensive,

More information

1 Big Data Hadoop. 1. Introduction About this Course About Big Data Course Logistics Introductions

1 Big Data Hadoop. 1. Introduction About this Course About Big Data Course Logistics Introductions Big Data Hadoop Architect Online Training (Big Data Hadoop + Apache Spark & Scala+ MongoDB Developer And Administrator + Apache Cassandra + Impala Training + Apache Kafka + Apache Storm) 1 Big Data Hadoop

More information

Chapter 7: Deadlocks. Operating System Concepts 9 th Edition

Chapter 7: Deadlocks. Operating System Concepts 9 th Edition Chapter 7: Deadlocks Silberschatz, Galvin and Gagne 2013 Chapter Objectives To develop a description of deadlocks, which prevent sets of concurrent processes from completing their tasks To present a number

More information

XPS 8920 Setup and Specifications

XPS 8920 Setup and Specifications XPS 8920 Setup and Specifications 计算机型号 : XPS 8920 管制型号 : D24M 管制类型 : D24M001 注 小心和警告 注 : 注 表示帮助您更好地使用该产品的重要信息 小心 : 小心 表示可能会损坏硬件或导致数据丢失, 并说明如何避免此类问题 警告 : 警告 表示可能会造成财产损失 人身伤害甚至死亡 版权所有 2017 Dell Inc. 或其附属公司

More information

#MDCC Swift 链式语法应 用 陈乘

#MDCC Swift 链式语法应 用 陈乘 #MDCC 2016 Swift 链式语法应 用 陈乘 方 @ENJOY 关于我 Swift 开发者 ENJOY ios 客户端负责 人 两年年 Swift 实际项 目开发经验 微博 ID: webfrogs Twitter: nswebfrog Writing code is always easy, the hard part is reading it. 链式语法? 链式语法 可以连续不不断地进

More information

Testbed Overview in China Xiaohong Huang Beijing University of Posts and Telecommunications

Testbed Overview in China Xiaohong Huang Beijing University of Posts and Telecommunications Testbed Overview in China Xiaohong Huang Beijing University of Posts and Telecommunications CJK FI Workshop, Nov. 2011 Agenda Why we need testbeds PlanetLab, Emulab, OpenFlow, Seattle, ORBIT,... Idea Standardization

More information

DBI-B311. Revolution R 和微软数据平台 赵利超微软数据平台技术专家

DBI-B311. Revolution R 和微软数据平台 赵利超微软数据平台技术专家 DBI-B311 Revolution R 和微软数据平台 赵利超微软数据平台技术专家 R 以及 R 在企业里的应用 Comprehensive R Archive Network = 统计语言 + 数据挖掘 统计分析语言 巨大的算法包支持数据导入, 数据整理, 数据的统计分析和可视化 来源 : www.rexeranalytics.com Revolution R 数据量 内存限制 基于硬盘的扩展性

More information

在数据中心中加速 AI - Xilinx 机器学习套件 (Xilinx ML Suite )

在数据中心中加速 AI - Xilinx 机器学习套件 (Xilinx ML Suite ) 赛灵思高级主任 DSP/ 机器学习专家赛灵思高级主任 DSP/ 机器学习专家 赛灵思技术日 XILINX TECHNOLOGY DAY 在数据中心中加速 AI - Xilinx 机器学习套件 (Xilinx ML Suite ) 王宏强赛灵思资深主任 DSP/ 机器学习专家 2019 年 3 月 19 日 机器学习推断是赛灵思的长项 TRAINING Input cat =? labels dog

More information

The State and Opportunities of HPC Applications in China. Ruibo Wang National University of Defense Technology

The State and Opportunities of HPC Applications in China. Ruibo Wang National University of Defense Technology The State and Opportunities of HPC Applications in China Ruibo Wang National University of Defense Technology Outline Brief introduction to the Sites Applications Fusion Development of HPC, Cloud & Big

More information

Multiprotocol Label Switching The future of IP Backbone Technology

Multiprotocol Label Switching The future of IP Backbone Technology Multiprotocol Label Switching The future of IP Backbone Technology Computer Network Architecture For Postgraduates Chen Zhenxiang School of Information Science and Technology. University of Jinan (c) Chen

More information

组播路由 - MSDP 和 PIM 通过走

组播路由 - MSDP 和 PIM 通过走 组播路由 - MSDP 和 PIM 通过走 Contents Introduction 拓扑控制 - 飞机来源注册 ( 步骤 1-3) 接受器参加组 ( 第 4 步 - 第 11 步 ) R4 PIM RP 修剪 (S, G) 步骤 12 摘要 Related Information Introduction 本文描述独立于协议的组播 (PIM) 和多播源发现协议 (MSDP) 的操作与使用一简单的组播拓扑

More information

北 京 忆 恒 创 源 科 技 有 限 公 司 16

北 京 忆 恒 创 源 科 技 有 限 公 司 16 北京忆恒创源科技有限公司 16 Client Name Internal Project Name PPT Template Range For Internal only Project Leader Tang Zhibo Date 2013.4.26 Vision 0.1 北京忆恒创源科技有限公司,Memblaze 唐志波市场副总 / 联合创始人 曾在英特尔有限公司任职 11 年 任英特尔解决方案部高级技术顾问,

More information

bada Developer Day 2011 Copyright 2011 Samsung Electronics, Co., Ltd. All rights reserved

bada Developer Day 2011 Copyright 2011 Samsung Electronics, Co., Ltd. All rights reserved 从 ios 到 Developer Day 2011 Copyright 2011 Samsung Electronics, Co., Ltd. All rights reserved 目录 1. ios 和 概述 2. 了解 Frameworks 3. 生命周期 4. 事件处理 5. 移植 IOS 的 UI 到 2 I Porting ios Apps to 1. ios 和 概述 编程语言 Objective

More information

MongoDB. CSC309 TA: Sukwon Oh

MongoDB. CSC309 TA: Sukwon Oh MongoDB CSC309 TA: Sukwon Oh Review SQL declarative language for querying data tells what to find and not how to find Review RDBMS Characteristics Easy to use Complicated to use it right Fixed schema Difficult

More information

China Next Generation Internet (CNGI) project and its impact. MA Yan Beijing University of Posts and Telecommunications 2009/08/06.

China Next Generation Internet (CNGI) project and its impact. MA Yan Beijing University of Posts and Telecommunications 2009/08/06. China Next Generation Internet (CNGI) project and its impact MA Yan Beijing University of Posts and Telecommunications 2009/08/06 Outline Next Generation Internet CNGI project in general CNGI-CERNET2 CERNET2

More information

数据挖掘 Introduction to Data Mining

数据挖掘 Introduction to Data Mining 数据挖掘 Introduction to Data Mining Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2019 S8700113C 1 Introduction Last week: Association Analysis

More information

Oracle 一体化创新云技术 助力智慧政府信息化战略. Copyright* *2014*Oracle*and/or*its*affiliates.*All*rights*reserved.** *

Oracle 一体化创新云技术 助力智慧政府信息化战略. Copyright* *2014*Oracle*and/or*its*affiliates.*All*rights*reserved.** * Oracle 一体化创新云技术 助力智慧政府信息化战略 ?* x * Exadata Exadata* * * Exadata* InfiniBand 0Gbits/S 5?10 * Exadata* * Exadata& & Oracle exadata! " 4 " 240 12! "!! " " " Exadata* Exadata & Single?Instance*Database*

More information

PMI,PMI (China) Membership, Certifications. Bob Chen PMI (China) August 31, 2010

PMI,PMI (China) Membership, Certifications. Bob Chen PMI (China) August 31, 2010 PMI,PMI (China) Membership, Certifications Bob Chen PMI (China) August 31, 2010 内容 (1) PMI Global (2) PMI China update (3) Certifications (4) Memberships 2 PMI Global Developments 3 What is PMI? Global

More information

Presentation Title. By Author The MathWorks, Inc. 1

Presentation Title. By Author The MathWorks, Inc. 1 Presentation Title By Author 2014 The MathWorks, Inc. 1 4G LTE 轻松入门 陈建平 MathWorks 中国 2014 The MathWorks, Inc. 2 大纲 4G 综述 LTE 系统工具箱的应用 黄金参考模型 点到点链路级仿真 信号发生和分析 信号信息恢复 4G 系统的并行仿真加速 3 无线标准的演化 * *Although ETSI

More information

梁永健. W K Leung. 华为企业业务 BG 解决方案销售部 CTO Chief Technology Officer, Solution Sales, Huawei

梁永健. W K Leung. 华为企业业务 BG 解决方案销售部 CTO Chief Technology Officer, Solution Sales, Huawei 梁永健 W K Leung 华为企业业务 BG 解决方案销售部 CTO Chief Technology Officer, Solution Sales, Huawei Network Threats ICT 移动化云计算社交化大数据 Mobile Cloud Social Big Data 网络威胁 APT Mobile threats Web threats Worms Trojans Botnet

More information

WSV 让网站更加安全的几个小 妙招 徐栋 北京中达金桥技术服务有限公司

WSV 让网站更加安全的几个小 妙招 徐栋 北京中达金桥技术服务有限公司 WSV-300-4 让网站更加安全的几个小 妙招 徐栋 北京中达金桥技术服务有限公司 小提示 网络安全不 能亡羊补牢 安全基础 No upsniff from image/* X-Content-Type-Options: nosniff Option to force file save: Content-Disposition: attachment;filename= foo.doc ; X-Download-Options:

More information

Solarwinds Engineers Toolset V11 Keygen Idm ->>>

Solarwinds Engineers Toolset V11 Keygen Idm ->>> Solarwinds Engineers Toolset V11 Keygen Idm ->>> http://shurll.com/7nmn5 1 / 5 2 / 5 Solarwinds Engineers Toolset V11 Crackedinstmank, cara mengatasi rational license key error ration... This feature was

More information

Build a Key Value Flash Disk Based Storage System. Flash Memory Summit 2017 Santa Clara, CA 1

Build a Key Value Flash Disk Based Storage System. Flash Memory Summit 2017 Santa Clara, CA 1 Build a Key Value Flash Disk Based Storage System Flash Memory Summit 2017 Santa Clara, CA 1 Outline Ø Introduction,What s Key Value Disk Ø A Evolution to Key Value Flash Disk Based Storage System Ø Three

More information

PRODUCT SPECIFICATION

PRODUCT SPECIFICATION Capacitive PRODUCT SPECIFICATION Customer ( 客户名称 ) : Customer No.( 客户编码 ): Product( 产品类型 ) :U Touch Panel Product No.( 产品编号 ): BET-CT016001V1 Date ( 日期 ) : 2014-1-01 BET Optronics Technology Co.,Ltd APPROVED

More information

Chapter 10 Java and SQL. Wang Yang

Chapter 10 Java and SQL. Wang Yang Chapter 10 Java and SQL Wang Yang wyang@njnet.edu.cn Outline Concern Data - File & IO vs. Database &SQL Database & SQL How Connect Java to SQL - Java Model for Database Java Database Connectivity (JDBC)

More information

jquery ajax get and F5A0010ECD0F3A43C7419B2CEF Jquery Ajax Get And 1 / 6

jquery ajax get and F5A0010ECD0F3A43C7419B2CEF Jquery Ajax Get And 1 / 6 Jquery Ajax Get And 1 / 6 2 / 6 3 / 6 Jquery Ajax Get And A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxsetup().see

More information

SNMP Web Manager. User s Manual

SNMP Web Manager. User s Manual SNMP Web Manager User s Manual Table of Contents 1. Introduction... 2 2. SNMP Web Manager Install, Quick Start and Uninstall... 2 2.1. Software Installation... 3 2.2. Software Quick Start... 6 2.3. Software

More information

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2019 1 Last week We have discussed about:

More information

电子行业产品指南. Electronics Industry Product Selector Guide

电子行业产品指南. Electronics Industry Product Selector Guide 电子行业产品指南 Electronics Industry Product Selector Guide 覆铜板行业内可信赖的产品系列 覆铜板市场趋势普通 Tg 和高 Tg 无卤素覆铜板 出于对环境的保护, 越来越多的覆铜板和终端制造商需求无卤素材料, 包含普通 Tg 和高 Tg 高速产品用覆铜板 高速信号通讯和存储要求覆铜板具有高速传输和信号完整性特性, 更低的 Dk 和 Df 是具体的特性表现

More information

Chapter 11 SHANDONG UNIVERSITY 1

Chapter 11 SHANDONG UNIVERSITY 1 Chapter 11 File System Implementation ti SHANDONG UNIVERSITY 1 Contents File-System Structure File-System Implementation Directory Implementation Allocation Methods Free-Space Management Efficiency and

More information

Apache Kafka 源码编译 Spark 大数据博客 -

Apache Kafka 源码编译 Spark 大数据博客 - 经过近一个月时间, 终于差不多将之前在 Flume 0.9.4 上面编写的 source sink 等插件迁移到 Flume-ng 1.5.0, 包括了将 Flume 0.9.4 上面的 TailSou rce TailDirSource 等插件的迁移 ( 当然, 我们加入了许多新的功能, 比如故障恢复 日志的断点续传 按块发送日志以及每个一定的时间轮询发送日志而不是等一个日志发送完才发送另外一个日志

More information

SESEC IV. China Cybersecurity. Standardization Monthly. Newsletter. June 2018

SESEC IV. China Cybersecurity. Standardization Monthly. Newsletter. June 2018 Author: Betty XU Distributed to: SESEC Partners, EU standardization stakeholders Date of issue: 19-07-2018 SESEC IV China Cybersecurity Standardization Monthly Newsletter Introduction of SESEC Project

More information

ASTRI 5G/NGN Initiative Overview

ASTRI 5G/NGN Initiative Overview ASTRI 5G/NGN Initiative Overview Dr. Justin CHUANG, IEEE Fellow Vice President, ASTRI, Hong Kong 28, October 2016 Next Generation Network ASTRI develops infrastructure and platform of new technologies

More information

IBM 开源技术微讲堂容器技术与微服务系列

IBM 开源技术微讲堂容器技术与微服务系列 IBM 开源技术微讲堂容器技术与微服务系列 第 二讲 容器管理 工具 Docker Swarm h.p://ibm.biz/opentech- ma 1 容器技术和微服务 系列公开课 每周四晚 8 点档 Docker 一种全新的 工作 方式 容器管理 工具 Docker Swarm 数据中 心操作系统的内核 Apache Mesos 大数据 Web 服务 CI/CD: 一个都不能少 深 入理解 Mesos

More information

OBJECTIVES. How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization.

OBJECTIVES. How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization. 7.5 逻辑数据库设计 OBJECTIVES How to derive a set of relations from a conceptual data model. How to validate these relations using the technique of normalization. 2 OBJECTIVES How to validate a logical data model

More information

Brad Dayley. Sams Teach Yourself. NoSQL with MongoDB. SAMS 800 East 96th Street, Indianapolis, Indiana, USA

Brad Dayley. Sams Teach Yourself. NoSQL with MongoDB. SAMS 800 East 96th Street, Indianapolis, Indiana, USA Brad Dayley Sams Teach Yourself NoSQL with MongoDB SAMS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction 1 How This Book Is Organized 1 Code Examples 2 Special Elements

More information

IBM 开源技术微讲堂容器技术与微服务系列

IBM 开源技术微讲堂容器技术与微服务系列 IBM 开源技术微讲堂容器技术与微服务系列 第五讲 Kubernetes 简介 h,p://ibm.biz/opentech- ma 1 容器技术和微服务 系列公开课 每周四晚 8 点档 Docker 一种全新的 工作 方式 容器编排 工具 Docker Swarm 数据中 心操作系统的内核 Apache Mesos 大数据 Web 服务 CI/CD: 一个都不能少 深 入理解 Mesos 的资源调度及使

More information

CHAPTER 5 NEW INTERNET APPLICATIONS

CHAPTER 5 NEW INTERNET APPLICATIONS CHAPTER 5 NEW INTERNET APPLICATIONS 5.1 INSTANT MESSAGING (IM) 5.1.1 OVERVIEW OF INSTANT MESSAGING (IM) Instant messaging (IM) is an extension of e-mail that allows two or more people to contact each other

More information

如何查看 Cache Engine 缓存中有哪些网站 /URL

如何查看 Cache Engine 缓存中有哪些网站 /URL 如何查看 Cache Engine 缓存中有哪些网站 /URL 目录 简介 硬件与软件版本 处理日志 验证配置 相关信息 简介 本文解释如何设置处理日志记录什么网站 /URL 在 Cache Engine 被缓存 硬件与软件版本 使用这些硬件和软件版本, 此配置开发并且测试了 : Hardware:Cisco 缓存引擎 500 系列和 73xx 软件 :Cisco Cache 软件版本 2.3.0

More information

New Media Data Analytics and Application. Lecture 7: Information Acquisition An Integration Ting Wang

New Media Data Analytics and Application. Lecture 7: Information Acquisition An Integration Ting Wang New Media Data Analytics and Application Lecture 7: Information Acquisition An Integration Ting Wang Outlines Product-Oriented Data Collection Make a Web Crawler System Integration You should know your

More information

: Operating System 计算机原理与设计

: Operating System 计算机原理与设计 0117401: Operating System 计算机原理与设计 Chapter 1-2: CS Structure 陈香兰 xlanchen@ustceducn http://staffustceducn/~xlanchen Computer Application Laboratory, CS, USTC @ Hefei Embedded System Laboratory, CS, USTC

More information

MongoDB Step By Step. By B.A.Khivsara Assistant Professor Department of Computer Engineering SNJB s COE,Chandwad

MongoDB Step By Step. By B.A.Khivsara Assistant Professor Department of Computer Engineering SNJB s COE,Chandwad MongoDB Step By Step By B.A.Khivsara Assistant Professor Department of Computer Engineering SNJB s COE,Chandwad Outline Introduction to MongoDB Installation in Ubuntu Starting MongoDB in Ubuntu Basic Operations

More information

USB Definitions. Conditions. Analog Input SPECIFICATIONS. 8 AI (10 ks/s), 4 DIO USB Multifunction I/O Device

USB Definitions. Conditions. Analog Input SPECIFICATIONS. 8 AI (10 ks/s), 4 DIO USB Multifunction I/O Device SPECIFICATIONS USB-6000 8 AI (10 ks/s), 4 DIO USB Multifunction I/O Device Definitions Warranted specifications describe the performance of a model under stated operating conditions and are covered by

More information

Big Data Technology Ecosystem. Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara

Big Data Technology Ecosystem. Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara Big Data Technology Ecosystem Mark Burnette Pentaho Director Sales Engineering, Hitachi Vantara Agenda End-to-End Data Delivery Platform Ecosystem of Data Technologies Mapping an End-to-End Solution Case

More information

智能终端与物联网应用 课程建设与实践. 邝坚 嵌入式系统与网络通信研究中心北京邮电大学计算机学院

智能终端与物联网应用 课程建设与实践. 邝坚 嵌入式系统与网络通信研究中心北京邮电大学计算机学院 智能终端与物联网应用 课程建设与实践 邝坚 jkuang@bupt.edu.cn 嵌入式系统与网络通信研究中心北京邮电大学计算机学院 定位 移动互联网 服务 安 理解 云计算 服务计算 可信 全 交换感知 嵌入式计算 计算 现状与趋势 p 移动互联网发展迅猛 第 27 次中国互联网络发展状况统计报告 (CNNIC) 指出截至 2010 年 12 月, 中国互联网用户数已达到 4.57 亿, 其中移动互联网网民数已达

More information

These specifications apply to the 1 m and 3 m TriaxM-TriaxM. it in a manner not described in this document.

These specifications apply to the 1 m and 3 m TriaxM-TriaxM. it in a manner not described in this document. SPECIFICATIONS TriaxM-TriaxM Low Noise Triaxial to Triaxial Cable for SMUs These specifications apply to the 1 m and 3 m TriaxM-TriaxM. Caution You can impair the protection provided by the TriaxM-TriaxM

More information

Language. f SQL. Larry Rockoff COURSE TECHNOLOGY. Kingdom United States. Course Technology PTR. A part ofcenqaqe Learninq

Language. f SQL. Larry Rockoff COURSE TECHNOLOGY. Kingdom United States. Course Technology PTR. A part ofcenqaqe Learninq Language f SQL Larry Rockoff Course Technology PTR A part ofcenqaqe Learninq *, COURSE TECHNOLOGY!» CENGAGE Learning- Australia Brazil Japan Korea Mexico Singapore Spain United Kingdom United States '

More information

IBM 企业业务连续性方案建议书. System x3850m2+ds4700/ds5000

IBM 企业业务连续性方案建议书. System x3850m2+ds4700/ds5000 System x3850m2+ds4700/ds5000 IBM Corporation 2009. All Rights Reserved. IBM is a registered trademark of International Business Machines Corporation in the United States, other countries, or both. 目录 第

More information

A New Data Structure for Cumulative Frequency Tables

A New Data Structure for Cumulative Frequency Tables SOFTWARE-PRACTICE AND EXPERIENCE. VOL. 24(3). 321-336 (MARCH 1994) A New Data Structure for Cumulative Frequency Tables PETER M. FENWICK Department of Computer Science, University of Auckland, Private

More information

Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南

Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南 Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南 Logitech ConferenceCam CC3000e Camera English................. 4 简体中文................ 9 www.logitech.com/support............................

More information

MongoDB Shell: A Primer

MongoDB Shell: A Primer MongoDB Shell: A Primer A brief guide to features of the MongoDB shell Rick Golba Percona Solutions Engineer June 8, 2017 1 Agenda Basics of the Shell Limit and Skip Sorting Aggregation Pipeline Explain

More information

mongodb a structured document

mongodb a structured document 1, mongodb a structured document In [624]: db=client.things In [625]: db.things.find_one() Out[625]: {u _id : 0, u value : 0} In [626]: db.things.update({ _id :0},{ struct :{ d1 : value 1, d2 : value 2

More information

系统生物学. (Systems Biology) 马彬广

系统生物学. (Systems Biology) 马彬广 系统生物学 (Systems Biology) 马彬广 专用建模工具 ( 第十五讲 ) 梗概 (Synopsis) 通用建模工具 ( 数学计算软件 ) 专用建模工具 ( 细胞生化体系建模 ) 专用建模工具 模型描述语言与数据格式 模型及建模相关的数据库 细胞生化体系建模工具 模型描述语言 模型描述语言大多是基于 XML (Extensible Markup Language) 的, 并用到了 MathML

More information

MeeGo : An Open Source OS Solution For Client Devices

MeeGo : An Open Source OS Solution For Client Devices MeeGo : An Open Source OS Solution For Client Devices Fleming Feng Open Source Technology Center System Software Division Intel Asia Pacific Research and Development Ltd. 1. Agenda Mobile Internet boosts

More information

Cyber Threat to Critical Infrastructure Increased Control System Exposure

Cyber Threat to Critical Infrastructure Increased Control System Exposure Cyber Threat to Critical Infrastructure 2010-2015 Increased Control System Exposure Peter D. Gasper Idaho National Laboratory 24 Sep 2008 208 526 4597 Peter.gasper@inl.gov Cyber Threat to Critical Infrastructure

More information

Spark Standalone 模式应用程序开发 Spark 大数据博客 -

Spark Standalone 模式应用程序开发 Spark 大数据博客 - 在本博客的 Spark 快速入门指南 (Quick Start Spark) 文章中简单地介绍了如何通过 Spark s hell 来快速地运用 API 本文将介绍如何快速地利用 Spark 提供的 API 开发 Standalone 模式的应用程序 Spark 支持三种程序语言的开发 :Scala ( 利用 SBT 进行编译 ), Java ( 利用 Maven 进行编译 ) 以及 Python

More information

8 AI (12-Bit, 10 ks/s), 2 AO (150 Hz), 12 DIO USB Multifunction I/O Device

8 AI (12-Bit, 10 ks/s), 2 AO (150 Hz), 12 DIO USB Multifunction I/O Device SPECIFICATIONS USB-6008 8 AI (12-Bit, 10 ks/s), 2 AO (150 Hz), 12 DIO USB Multifunction I/O Device Definitions Warranted specifications describe the performance of a model under stated operating conditions

More information

CA Application Performance Management

CA Application Performance Management CA Application Performance Management for IBM WebSphere Portal 指南 版本 9.5 本文档包括内嵌帮助系统和以电子形式分发的材料 ( 以下简称 文档 ), 其仅供参考,CA 随时可对其进行更改或撤销 未经 CA 事先书面同意, 不得擅自复制 转让 翻印 透露 修改或转录本文档的全部或部分内容 本文档属于 CA 的机密和专有信息, 不得擅自透露,

More information

NXP 微处理器和微控制器概览 MICR 业务事业部, 大中华区市场部 2017 PUBLIC

NXP 微处理器和微控制器概览 MICR 业务事业部, 大中华区市场部 2017 PUBLIC NXP 微处理器和微控制器概览 MICR 业务事业部, 大中华区市场部 2017 技术进步加速为恩智浦带来发展良机 智慧生活, 安全连结 连结无处不在 智能无处不在 安全无处不在 在线用户超过 10 亿连网设备超过 300 亿 2020 年智能设备出货量将超过 400 亿台 可减少经济损失 5000 亿美元 互联 处理 安全 1 外部使用 数据来源 : Euromonitor; Gartner; ARM

More information

Seagate Backup Plus Hub User Manual

Seagate Backup Plus Hub User Manual Seagate Backup Plus Hub User Manual Model: Click here to access an up-to-date online version of this document. You will also find the most recent content as well as expandable illustrations, easier navigation,

More information

Nvidia GPU Support on Mesos: Bridging Mesos Containerizer and Docker Containerizer

Nvidia GPU Support on Mesos: Bridging Mesos Containerizer and Docker Containerizer Nvidia GPU Support on Mesos: Bridging Mesos Containerizer and Docker Containerizer MesosCon Asia - 2016 Yubo Li Research Stuff Member, IBM Research - China Email: liyubobj@cn.ibm.com 1 Yubo Li( 李玉博 ) Email:

More information

深入了解 Redis. 宋传胜

深入了解 Redis. 宋传胜 深入了解 Redis 宋传胜 Chuansheng.song@langtaojin.com 简单介绍 文本协议 memcached 类似 KEY 可打印字符 VALUE 支持的类型 STRINGS LIST SET SORTED SET HASH 高性能 (100k+ SET/80k+ GET)/s 序列化支持 主从同步支持 客户端自己实现 sharding 基本数据结构 RedisObject (Redis.h)

More information

Thermal Kit for NI sbrio-9607/9627/9637

Thermal Kit for NI sbrio-9607/9627/9637 INSTALLATION AND SPECIFICATIONS MANUAL Thermal Kit for NI sbrio-9607/9627/9637 The Thermal Kit for NI sbrio-9607/9627/9637 is a heat spreader accessory used to improve the thermal performance of the NI

More information

RTM Contents. Definitions. Conditions SPECIFICATIONS. High-Speed Serial Rear Transition Module for ATCA

RTM Contents. Definitions. Conditions SPECIFICATIONS. High-Speed Serial Rear Transition Module for ATCA SPECIFICATIONS RTM-3662 High-Speed Serial Rear Transition Module for ATCA Contents Definitions...1 Conditions... 1 High-Speed Serial Interface... 2 Power... 2 Maximum Power Requirements...2 Maximum Working

More information

Distributed Network Service Policy Enforcement

Distributed Network Service Policy Enforcement Distributed Network Service Policy Enforcement Jun Li Contributions from my students, Xiang Wang and Xiaohe Hu June 17, 2016 Outline Background Related Work Policy Space Analysis Policy Enforcement with

More information

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007

信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 信息检索与搜索引擎 Introduction to Information Retrieval GESC1007 Philippe Fournier-Viger Full professor School of Natural Sciences and Humanities philfv8@yahoo.com Spring 2019 1 Last week We have discussed: Evaluation

More information

Autodesk Backburner 2011 安装手册

Autodesk Backburner 2011 安装手册 Autodesk Backburner 2011 安装手册 Autodesk Backburner 2011 2010 Autodesk, Inc. All rights reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts thereof, may not be reproduced

More information

Green Hills Software Development Tools

Green Hills Software Development Tools STMicroelectronics Automotive MCU Technical Day 意法半导体汽车微控制器技术日 Green Hills Software Development Tools 吴远鹏 Hanyi Technologies Co., Ltd 2017 年 ST 汽车 MCU 技术日 2017 年 6 月 6 日, 上海 2017 年 6 月 8 日, 深圳 2017 年 6

More information

Computer Networks. Wenzhong Li. Nanjing University

Computer Networks. Wenzhong Li. Nanjing University Computer Networks Wenzhong Li Nanjing University 1 Chapter 3. Packet Switching Networks Network Layer Functions Virtual Circuit and Datagram Networks ATM and Cell Switching X.25 and Frame Relay Routing

More information

MongoDB DI Dr. Angelika Kusel

MongoDB DI Dr. Angelika Kusel MongoDB DI Dr. Angelika Kusel 1 Motivation Problem Data is partitioned over large scale clusters Clusters change the rules for processing Good news Lots of machines to spread the computation over Bad news

More information

Software Engineering. Zheng Li( 李征 ) Jing Wan( 万静 )

Software Engineering. Zheng Li( 李征 ) Jing Wan( 万静 ) Software Engineering Zheng Li( 李征 ) Jing Wan( 万静 ) 作业 Automatically test generation 1. 编写一个三角形程序, 任意输入三个整数, 判断三个整形边长能否构成三角形, 如果是三角形, 则判断它是一般三角形 等腰三角形或等边三角形, 并输出三角形的类型 2. 画出程序的 CFG, 计算圈复杂度 3. 设计一组测试用例满足测试准则

More information