> 支付宝组件和开源框架
 支付宝App架构揭秘—使用的开源组件总 FFmpeg-https://github.com/FFmpeg/FFmpeg
 achartengine MPAndroidChart-https://github.com/ddanny/achartengine
 CircleImageView -https://github.com/hdodenhof/CircleImageView
 TheMVP -https://github.com/kymjs/TheMVP
 androidquery -https://github.com/androidquery/androidquery
 gson- https://github.com/google/gson
 DiskLruCache- https://github.com/JakeWharton/DiskLruCache
 tagsoup Html解析- https://github.com/ndmitchell/tagsoup
 ViewPagerIndicator- https://github.com/JakeWharton/ViewPagerIndicator
 wire- https://github.com/square/wire
 okio- https://github.com/square/okio
 XRecyclerView- https://github.com/jianghejie/XRecyclerView
 ijkplayer- https://github.com/Bilibili/ijkplayer
 dagger- https://github.com/square/dagger
 jackson-databind -https://github.com/FasterXML/jackson-databind
 jackson-core- https://github.com/FasterXML/jackson-core
 jackson-annotations- https://github.com/FasterXML/jackson-annotations
 DanmakuFlameMaster- https://github.com/Bilibili/DanmakuFlameMaster
 android-stackblur- https://github.com/kikoso/android-stackblur
 Android-Charts-https://github.com/limccn/Android-Charts
 android-supprt-library Google支持库,例如:v4,v7,v13,v21.-https://developer.android.google.cn/index.html
 NineOldAndroids -https://github.com/JakeWharton/NineOldAndroids
 Leakcanary-https://github.com/square/leakcanary
 EventBus-https://github.com/greenrobot/EventBus
 androidannotations-https://github.com/androidannotations/androidannotations
 fastjson-https://github.com/alibaba/fastjson
 okhttp-https://github.com/square/okhttp
 OpenSSL-https://github.com/openssl/openssl
 duktape-https://github.com/svaarala/duktape
 ProgressWheel-https://github.com/Todd-Davies/ProgressWheel
 android-gif-drawable-https://github.com/koral--/android-gif-drawable
 zlib-https://github.com/madler/zlib
 libyuv-https://github.com/lemenkov/libyuv
 css-layout-https://github.com/facebook/yoga
 aspectj -https://github.com/eclipse/org.aspectj
 libjpeg-turbo- https://github.com/libjpeg-turbo/libjpeg-turbo> 支付宝和蚂蚁花呗
 如:流量控制,缓存策略,依赖管控,性能优化……蚂蚁花呗业务中最为关键的一环在于买家授信和支付风险的控制。支付宝和蚂蚁花呗整个平台被分成了三个层:
  1.运维平台(IAAS):主要提供基础资源的可伸缩性,比如网络、存储、数据库、虚拟化、IDC等,保证底层系统平台的稳定性;
  2.技术平台(PAAS):主要提供可伸缩、高可用的分布式事务处理和服务计算能力,能够做到弹性资源的分配和访问控制,提供一套基础的中间件运行环境,屏蔽底层资源的复杂性;
  3.业务平台(SAAS):提供随时随地高可用的支付服务,并且提供一个安全易用的开放支付应用开发平台。-- 蚂蚁金融技术团队可以做到“先胜而后求战”,主要分为三方面技术积累:“谋”,“器”,“将”。
 “谋”就是整体的架构设计方案和策略;
 “器”就是支持技术工作的各种基础中间件和基础组件;
 “将”就是通过实践锻炼成长起来的技术人员。如何成为一名顶尖的阿里架构师?- 
 阿里P8架构师谈:分布式缓存的应用场景、选型比较、问题和挑战- https://blog.csdn.net/gupao123456/article/details/81480975
-- 分布式缓存应用场景:
  页面缓存.用来缓存Web 页面的内容片段,包括HTML、CSS 和图片等;
  应用对象缓存.缓存系统作为ORM 框架的二级缓存对外提供服务,目的是减轻数据库的负载压力,加速应用访问;
  解决分布式Web部署的session同步问题,状态缓存.缓存包括Session 会话状态及应用横向扩展时的状态数据等,这类数据一般是难以恢复的,对可用性要求较高,多应用于高可用集群。
  并行处理.通常涉及大量中间计算结果需要共享;
  云计算领域提供分布式缓存服务。