博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ATS源码目录结构(Apache Traffic Server 学习笔记 3)
阅读量:4162 次
发布时间:2019-05-26

本文共 2380 字,大约阅读时间需要 7 分钟。

1. DIRECTORY STRUCTURE
  traffic/ ............... top src dir
  |-- ci/ ................ quality assurance and other CI tools and configs
  |-- cmd/ ............... various command applications
      |-- traffic_cop/ ..
      |-- traffic_crashlog/
      |-- traffic_ctl/ ... traffic_ctl command line management application
      |-- traffic_layout/
      |-- traffic_manager/
      |-- traffic_top/ ... traffic_top application
      |-- traffic_via/ ...
      |-- traffic_wccp/ ..
  |-- contrib ............ various contributed auxiliary pieces
  |-- doc/ ...............
      |-- admin/ ......... Admin guide documentations
      |-- dot/ ........... Graphviz source files for docs pictures
      |-- man/ ........... Unix style man-pages
      |-- plugins/ ....... Documentation for our core plugins
      |-- sdk/ ........... Plugin developer guide
  |-- example/ ........... example plugins
  |-- install/ ........... installation programs and scripts
  |-- iocore/ ............
      |-- aio/ ........... Asynchronous I/O core
      |-- cache/ ......... Disk and RAM cache
      |-- cluster/ ....... Cache and configuration clustering
      |-- dns/ ........... DNS (asynchronous)
      |-- hostdb/ ........ Internal DNS cache
      |-- net/ ........... Network
  |-- lib/ ...............
      |-- cppapi/ ........ C++ api wrapper for plugin developers
      |-- records/ ....... library for config files
      |-- perl/ .......... Perl libraries for e.g. mgmt access and configurations
      |-- ts/ ............ Base / core library
      |-- tsconfig/....... New config parser and library (experimental)
      |-- wccp/ .......... WCCP implementation
  |-- m4/ ................ custom macros for configure.ac
  |-- mgmt/ .............. Management server and tools (including traffic_manager)
  |-- plugins/ ........... Stable core plugins
      |-- experimental/ .. Experimental core plugins
  |-- proxy/ ............. HTTP proxy logic 
(traffic_server的主要代码都在这里,main函数的入口在此目录下的Main.cc)
      |-- api/ ........... Plugin API includes
      |-- config/ ........ Configurations
      |-- congest/ ....... Congestion control
      |-- hdrs/ .......... Headers parsing and management
      |-- http/ .......... The actual HTTP protocol implementation
      |---http2/ ......... HTTP/2 implementation
      |-- logging/ ....... Flexible logging
  |-- README ............. intro, links, build info
  |-- README-EC2 ......... info on EC2 support
  |-- REVIEWERS .......... (incomplete) list of areas with committer interest
  |-- LICENSE ............ full license text
  `-- NOTICE ............. copyright notices

转载地址:http://zxixi.baihongyu.com/

你可能感兴趣的文章
loadrunner11中 800用户在线,200用户并发运行怎么设置
查看>>
SaaS架构设计之如何转化成SaaS多租户模式
查看>>
[转载]假如让我重返校园,我会怎样学习开发技术
查看>>
Hive简介
查看>>
MapBalanceReduce介绍
查看>>
left join 和 left outer join
查看>>
文字式网页浏览器w3m (默认快捷键列表)
查看>>
MySQL去除查询结果重复值 distinct 的用法
查看>>
sql聚合函数
查看>>
用Python来写MapReduce的实际应用程序
查看>>
Java正则表达式详解
查看>>
NASA放弃Eucalyptus 转向Nebula云平台
查看>>
使用 RRDtool 揭示 Web 性能问题
查看>>
对RRDTool的总结(一)
查看>>
对RRDTool的总结(二)
查看>>
High Availability for the Ubuntu Enterprise Cloud (UEC) – Cloud Controller (CLC)
查看>>
UbuntuHighAvailabilityTeam
查看>>
Linux下php 环境搭建
查看>>
linux下安装和运行wireshark
查看>>
PHP中时间和日期函数总结
查看>>