JavaScript并发编程(影印版) 东南大学出版社 umd mobi chm 夸克云 免费 azw3 下载 pdf

JavaScript并发编程(影印版) 东南大学出版社电子书下载地址
- 文件名
- [epub 下载] JavaScript并发编程(影印版) 东南大学出版社 epub格式电子书
- [azw3 下载] JavaScript并发编程(影印版) 东南大学出版社 azw3格式电子书
- [pdf 下载] JavaScript并发编程(影印版) 东南大学出版社 pdf格式电子书
- [txt 下载] JavaScript并发编程(影印版) 东南大学出版社 txt格式电子书
- [mobi 下载] JavaScript并发编程(影印版) 东南大学出版社 mobi格式电子书
- [word 下载] JavaScript并发编程(影印版) 东南大学出版社 word格式电子书
- [kindle 下载] JavaScript并发编程(影印版) 东南大学出版社 kindle格式电子书
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
JavaScript已经具备了并发能力,这也解释了为什么这门语言至今仍然屹立于现代web开发的前沿阵地。本书将帮助你深入JavaScript并发编程的世界,演示如何应用其核心原理、关键技术以及工具来应对各种复杂的开发难题。围绕并发编程的三个核心要素:并发、同步和保护(conservation),你将学会如何编写更高效、更富于变化的JavaScript程序,提高用户体验。
书籍目录:
Preface
Chapter 1: Why JavaScript Concurrency?
Synchronous JavaScript
Synchronicity is easy to understand
Asynchronous is inevitable
Asynchronous browsers
Types of concurrency
Asynchronous actions
Parallel actions
JavaScript concurrency principles: Parallelize, Synchronize,
Conserve
Parallelize
Synchronize
The Promise API
Conserve
Summary
Chapter 2: The JavaScript Execution Model
Everything is a task
Meet the players
The Execution environment
Event loops
Task queues
Execution contexts
Maintaining execution state
Job queues
Creating tasks using timers
Using setTimeout
Using setlnterval
Responding to DOM events
Event targets
Managing event frequency
Responding to network events
Making requests
Coordinating requests
Concurrency challenges with this model
Limited opportunity for parallelism
Synchronization through callbacks
Summary
Chapter 3: Synchronizing with Promises
Promise terminology
Promise
State
Executor
Resolver
Rejector
Thenable
Resolving and rejecting promises
Resolving promises
Rejecting promises
Empty promises
Reacting to promises
Resolution job queues
Using promised data
Error callbacks
Always reacting
Resolving other promises
Promise-like objects
Building callback chains
Promises only change state once
Immutable promises
Many then callbacks, many promises
Passing promises around
Synchronizing several promises
Waiting on promises
Cancelling promises
Promises without executors
Summary
Chapter 4: Lazy Evaluation with Generators
Call stacks and memory allocation
Bookmarking function contexts
Sequences instead of arrays
Creating generators and yielding values
Generator function syntax
Yielding values
Iterating over generators
Infinite sequences
No end in sight
Alternating sequences
Deferring to other generators
Selecting a strategy
Interweaving generators
Passing data to generators
Reusing generators
Lightweight map/reduce
Coroutines
Creating coroutine functions
Handling DOM events
Handling promised values
Summary
Chapter 5: Working with Workers
What are workers?
OS threads
Event targets
True parallelism
Types of workers
Dedicated workers
Sub-workers
Shared workers
Worker environments
What's available, what isn't?
Loading s
Communicating with workers
Posting messages
Message serialization
Receiving messages from workers
Sharing application state
Sharing memory
Fetching resources
Communicating between pages
Performing sub-tasks with sub-workers
Dividing work into tasks
A word of caution
Error handling in web workers
Error condition checking
Exception handling
Summary
Chapter 6: Practical Parallelism
Functional programming
Data in, data out
Immutability
Referential transparency and time
Do we need to go parallel?
How big is the data?
Hardware concurrency capabilities
Creating tasks and assigning work
Candidate problems
Embarrassingly parallel
Searching collections
Mapping and reducing
Keeping the DOM responsive
Bottom halves
Translating DOM manipulation
Translating DOM events
Summary
Chapter 7: Abstracting Concurrency
Writing concurrent code
Hiding the concurrency mechanism
Without concurrency
Worker communication with promises
Helper functions
Extending postMessage0
Synchronizing worker results
Lazy workers
Reducing overhead
Generating values in workers
Lazy worker chains
Using Parallel.js
How it works
Spawning workers
Mapping and reducing
Worker pools
Allocating pools
Scheduling jobs
Summary
Chapter 8: Evented IO with NodeJS
Single threaded IO
IO is slow
IO events
Multi-threading challenges
More connections, more problems
Deploying to the Internet
The C10K problem
Lightweight event handlers
Evented network IO
Handling HTTP requests
Streaming responses
Proxy network requests
Evented file IO
Reading from files
Writing to files
Streaming reads and writes
Summary
Chapter 9: Advanced NodeJS Concurrency
Coroutines with Co
Generating promises
Awaiting values
Resolving values
Asynchronous dependencies
Wrapping coroutines
Child Processes
Blocking the event loop
Forking processes
Spawning external processes
Inter-process communication
Process Clusters
Challenges with process management
Abstracting process pools
Server clusters
Proxying requests
Facilitating micro-services
Informed load balancing
Summary
Chapter 10: Building a Concurrent Application
Getting started
Concurrency first
Retrofitting concurrency
Application types
Requirements
The overall goal
The API
The UI
Building the API
The HTTP server and routing
Co-routines as handlers
The create chat handler
The join chat handler
The load chat handler
The send message handler.
Static handlers
Building the UI
Talking to the API
Implementing the HTML
DOM events and manipulation
Adding an API worker
Additions and improvements
Clustering the API
Cleaning up chats
Asynchronous entry points
Who's typing?
Leaving chats
Polling timeouts
Summary
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
书籍介绍
JavaScript已经具备了并发能力,这也解释了为什么这门语言至今仍然屹立于现代web开发的前沿阵地。亚当·布达奇编著的《JavaScript并发编程(影印版)(英文版)》将帮助你深入JavaScript并发编程的世界,演示如何应用其核心原理、关键技术以及工具来应对各种复杂的开发难题。围绕并发编程的三个核心要素:并发、同步和保护,你将学会如何编写更高效、更富于变化的JavaScript程序,从而提高用户体验。
书中通过采用各种开发方法,带领你将这些原理应用于实践。从JavaScriptpromises、webworkers、生成器到函数式编程技术,所有这些知识都将对你的应用程序性能产生实实在在的影响。除此之外,还进一步讨论了NodeJS并发编程。在成长为更优秀的Web开发人员的道路上,本书将助你一臂之力。
网站评分
书籍多样性:9分
书籍信息完全性:6分
网站更新速度:6分
使用便利性:9分
书籍清晰度:5分
书籍格式兼容性:5分
是否包含广告:5分
加载速度:9分
安全性:5分
稳定性:8分
搜索功能:8分
下载便捷性:8分
下载点评
- 中评多(400+)
- 体验差(230+)
- 方便(366+)
- 品质不错(277+)
- 不亏(301+)
- 推荐购买(78+)
下载评价
- 网友 国***舒:
中评,付点钱这里能找到就找到了,找不到别的地方也不一定能找到
- 网友 晏***媛:
够人性化!
- 网友 林***艳:
很好,能找到很多平常找不到的书。
- 网友 敖***菡:
是个好网站,很便捷
- 网友 养***秋:
我是新来的考古学家
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 权***颜:
下载地址、格式选择、下载方式都还挺多的
- 网友 冯***丽:
卡的不行啊
- 网友 蓬***之:
好棒good
- 网友 瞿***香:
非常好就是加载有点儿慢。
- 网友 印***文:
我很喜欢这种风格样式。
喜欢"JavaScript并发编程(影印版) 东南大学出版社"的人也看了
The Far East and the English Imagination, 1600-1730 umd mobi chm 夸克云 免费 azw3 下载 pdf
临床护理知识精要与测试丛书:中医护理学知识精要与测试 umd mobi chm 夸克云 免费 azw3 下载 pdf
【预订】My Stencil Kit umd mobi chm 夸克云 免费 azw3 下载 pdf
哈佛医生营养通识讲义 umd mobi chm 夸克云 免费 azw3 下载 pdf
现代尸体血管造影学 umd mobi chm 夸克云 免费 azw3 下载 pdf
高压直流输电设计手册 umd mobi chm 夸克云 免费 azw3 下载 pdf
2023年重庆市填报志愿指南【带院校介绍宣传彩页!纯正版保真!】 任选 下单备注 umd mobi chm 夸克云 免费 azw3 下载 pdf
菊坛名家丛书·绝代风华:言慧珠 umd mobi chm 夸克云 免费 azw3 下载 pdf
浮针医学纲要 umd mobi chm 夸克云 免费 azw3 下载 pdf
临床基础检验学技术学习指导与习题集(本科检验技术配教) umd mobi chm 夸克云 免费 azw3 下载 pdf
- 阳光课堂九年级上册语文人教版练习册初三9九上语文单元同步测评试卷同步练习册语文九年级上册人民教育出版社 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 【官方直订】BranD 杂志【九周年特刊】NO.60 [9号风球] 杂志期刊 原版正版 国际品牌设计 封面随机发货 附赠周边卡片 简体中文版 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 中国精算师金融数学过关必做1000题 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 9787542938794 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 网络路由与智能模拟 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 汤姆.索亚历险记(轻松英语名作欣赏-小学版)(第4级)(配光盘)——全彩色经典名著故事,配带音效、分角色朗读 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 预算会计 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 战略决策民营企业领导科学与艺术 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 新东方考研英语词汇词根 联想记忆法乱序版 俞敏洪 编著 群言出版社【无忧售后 放心购买】 umd mobi chm 夸克云 免费 azw3 下载 pdf
- 水先生的奇妙之旅作者特拉尼 大自然的魔法(环保全彩印刷) umd mobi chm 夸克云 免费 azw3 下载 pdf
书籍真实打分
故事情节:6分
人物塑造:6分
主题深度:9分
文字风格:6分
语言运用:5分
文笔流畅:3分
思想传递:4分
知识深度:9分
知识广度:6分
实用性:6分
章节划分:5分
结构布局:6分
新颖与独特:9分
情感共鸣:6分
引人入胜:9分
现实相关:9分
沉浸感:3分
事实准确性:4分
文化贡献:5分