基本信息
源码名称:FastDFS高性能分布式文件系统v6.9.1
源码大小:5.15M
文件格式:.zip
开发语言:C/C++
更新时间:2022-12-17
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 4 元 
   源码介绍


FastDFS高性能分布式文件系统v6.9.1

FastDFS是一个开源高性能分布式文件系统(DFS)。它的主要功能包括:文件存储,文件同步和文件访问以及高容量和负载平衡的设计。FastDFS特别适合基于照片共享站点和视频共享站点等文件的网站的要求。FastDFS服务端有两个角色:跟踪器(tracker)和存储节点(storage)。跟踪器主要做调度工作,在访问上起负载均衡的作用。存储节点存储文件,完成文件管理的所有功能:存储、同步和提供存取

.
├── FastDFS高性能分布式文件系统v6.9.1_FastDFS-v6.9.1.zip
├── fastdfs-6.9.1
│   ├── COPYING-3_0.txt
│   ├── HISTORY
│   ├── INSTALL
│   ├── README.md
│   ├── README_zh.md
│   ├── client
│   │   ├── Makefile.in
│   │   ├── client_func.c
│   │   ├── client_func.h
│   │   ├── client_global.c
│   │   ├── client_global.h
│   │   ├── fdfs_append_file.c
│   │   ├── fdfs_appender_test.c
│   │   ├── fdfs_appender_test1.c
│   │   ├── fdfs_client.h
│   │   ├── fdfs_crc32.c
│   │   ├── fdfs_delete_file.c
│   │   ├── fdfs_download_file.c
│   │   ├── fdfs_file_info.c
│   │   ├── fdfs_link_library.sh.in
│   │   ├── fdfs_monitor.c
│   │   ├── fdfs_regenerate_filename.c
│   │   ├── fdfs_test.c
│   │   ├── fdfs_test1.c
│   │   ├── fdfs_upload_appender.c
│   │   ├── fdfs_upload_file.c
│   │   ├── storage_client.c
│   │   ├── storage_client.h
│   │   ├── storage_client1.h
│   │   ├── test
│   │   │   ├── Makefile.in
│   │   │   ├── fdfs_monitor.c
│   │   │   ├── fdfs_test.c
│   │   │   └── fdfs_test1.c
│   │   ├── tracker_client.c
│   │   └── tracker_client.h
│   ├── common
│   │   ├── Makefile
│   │   ├── fdfs_define.h
│   │   ├── fdfs_global.c
│   │   ├── fdfs_global.h
│   │   ├── fdfs_http_shared.c
│   │   ├── fdfs_http_shared.h
│   │   ├── mime_file_parser.c
│   │   └── mime_file_parser.h
│   ├── conf
│   │   ├── anti-steal.jpg
│   │   ├── client.conf
│   │   ├── http.conf
│   │   ├── mime.types
│   │   ├── storage.conf
│   │   ├── storage_ids.conf
│   │   └── tracker.conf
│   ├── docker
│   │   ├── dockerfile_local
│   │   │   ├── Dockerfile
│   │   │   ├── README.md
│   │   │   ├── conf
│   │   │   │   ├── client.conf
│   │   │   │   ├── http.conf
│   │   │   │   ├── mime.types
│   │   │   │   ├── mod_fastdfs.conf
│   │   │   │   ├── nginx.conf
│   │   │   │   ├── storage.conf
│   │   │   │   └── tracker.conf
│   │   │   ├── fastdfs.sh
│   │   │   └── source
│   │   │       ├── fastdfs-nginx-module.tar.gz
│   │   │       ├── fastdfs.tar.gz
│   │   │       ├── libfastcommon.tar.gz
│   │   │       └── nginx-1.15.4.tar.gz
│   │   ├── dockerfile_local-v6.0.9
│   │   │   ├── README.md
│   │   │   ├── build_image-v6.0.8
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── conf
│   │   │   │   │   ├── client.conf
│   │   │   │   │   ├── http.conf
│   │   │   │   │   ├── mime.types
│   │   │   │   │   ├── mod_fastdfs.conf
│   │   │   │   │   ├── storage.conf
│   │   │   │   │   ├── storage_ids.conf
│   │   │   │   │   └── tracker.conf
│   │   │   │   ├── nginx_conf
│   │   │   │   │   └── nginx.conf
│   │   │   │   ├── nginx_conf.d
│   │   │   │   │   └── default.conf
│   │   │   │   ├── soft
│   │   │   │   │   ├── fastdfs-6.08.tar.gz
│   │   │   │   │   ├── fastdfs-nginx-module-1.22.tar.gz
│   │   │   │   │   ├── libfastcommon-1.0.57.tar.gz
│   │   │   │   │   └── nginx-1.22.0.tar.gz
│   │   │   │   └── start.sh
│   │   │   ├── build_image-v6.0.9
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── conf
│   │   │   │   │   ├── anti-steal.jpg
│   │   │   │   │   ├── client.conf
│   │   │   │   │   ├── http.conf
│   │   │   │   │   ├── mime.types
│   │   │   │   │   ├── mod_fastdfs.conf
│   │   │   │   │   ├── storage.conf
│   │   │   │   │   ├── storage_ids.conf
│   │   │   │   │   └── tracker.conf
│   │   │   │   ├── nginx_conf
│   │   │   │   │   └── nginx.conf
│   │   │   │   ├── nginx_conf.d
│   │   │   │   │   └── default.conf
│   │   │   │   ├── soft
│   │   │   │   │   ├── fastdfs-V6.09.tar.gz
│   │   │   │   │   ├── fastdfs-nginx-module-1.23.tar.gz
│   │   │   │   │   ├── libfastcommon-1.0.60.tar.gz
│   │   │   │   │   ├── libserverframe-1.1.19.tar.gz
│   │   │   │   │   └── nginx-1.22.0.tar.gz
│   │   │   │   └── start.sh
│   │   │   ├── fastdfs-conf
│   │   │   │   ├── conf
│   │   │   │   │   ├── anti-steal.jpg
│   │   │   │   │   ├── client.conf
│   │   │   │   │   ├── http.conf
│   │   │   │   │   ├── mime.types
│   │   │   │   │   ├── mod_fastdfs.conf
│   │   │   │   │   ├── storage.conf
│   │   │   │   │   ├── storage_ids.conf
│   │   │   │   │   └── tracker.conf
│   │   │   │   ├── nginx_conf
│   │   │   │   │   └── nginx.conf
│   │   │   │   ├── nginx_conf.d
│   │   │   │   │   └── default.conf
│   │   │   │   └── setting_conf.sh
│   │   │   ├── fastdfs自定义镜像和安装手册.txt
│   │   │   └── qa.txt
│   │   └── dockerfile_network
│   │       ├── Dockerfile
│   │       ├── README.md
│   │       ├── conf
│   │       │   ├── client.conf
│   │       │   ├── http.conf
│   │       │   ├── mime.types
│   │       │   ├── mod_fastdfs.conf
│   │       │   ├── nginx.conf
│   │       │   ├── storage.conf
│   │       │   └── tracker.conf
│   │       └── fastdfs.sh
│   ├── fastdfs.spec
│   ├── images
│   │   └── architect.png
│   ├── init.d
│   │   ├── fdfs_storaged
│   │   └── fdfs_trackerd
│   ├── make.sh
│   ├── php_client
│   │   ├── README
│   │   ├── config.m4
│   │   ├── fastdfs_appender_test.php
│   │   ├── fastdfs_appender_test1.php
│   │   ├── fastdfs_callback_test.php
│   │   ├── fastdfs_client.c
│   │   ├── fastdfs_client.h
│   │   ├── fastdfs_client.ini
│   │   ├── fastdfs_client.spec.in
│   │   ├── fastdfs_test.php
│   │   ├── fastdfs_test1.php
│   │   └── fastdfs_test_slave.php
│   ├── setup.sh
│   ├── storage
│   │   ├── Makefile.in
│   │   ├── fdfs_storaged.c
│   │   ├── fdht_client
│   │   │   ├── fdht_client.c
│   │   │   ├── fdht_client.h
│   │   │   ├── fdht_define.h
│   │   │   ├── fdht_func.c
│   │   │   ├── fdht_func.h
│   │   │   ├── fdht_global.c
│   │   │   ├── fdht_global.h
│   │   │   ├── fdht_proto.c
│   │   │   ├── fdht_proto.h
│   │   │   ├── fdht_proto_types.h
│   │   │   └── fdht_types.h
│   │   ├── storage_dio.c
│   │   ├── storage_dio.h
│   │   ├── storage_disk_recovery.c
│   │   ├── storage_disk_recovery.h
│   │   ├── storage_dump.c
│   │   ├── storage_dump.h
│   │   ├── storage_func.c
│   │   ├── storage_func.h
│   │   ├── storage_global.c
│   │   ├── storage_global.h
│   │   ├── storage_ip_changed_dealer.c
│   │   ├── storage_ip_changed_dealer.h
│   │   ├── storage_param_getter.c
│   │   ├── storage_param_getter.h
│   │   ├── storage_service.c
│   │   ├── storage_service.h
│   │   ├── storage_sync.c
│   │   ├── storage_sync.h
│   │   ├── storage_sync_func.c
│   │   ├── storage_sync_func.h
│   │   ├── storage_types.h
│   │   ├── tracker_client_thread.c
│   │   ├── tracker_client_thread.h
│   │   └── trunk_mgr
│   │       ├── trunk_client.c
│   │       ├── trunk_client.h
│   │       ├── trunk_free_block_checker.c
│   │       ├── trunk_free_block_checker.h
│   │       ├── trunk_mem.c
│   │       ├── trunk_mem.h
│   │       ├── trunk_shared.c
│   │       ├── trunk_shared.h
│   │       ├── trunk_sync.c
│   │       └── trunk_sync.h
│   ├── systemd
│   │   ├── fdfs_storaged.service
│   │   └── fdfs_trackerd.service
│   ├── test
│   │   ├── Makefile
│   │   ├── combine_result.c
│   │   ├── common_func.c
│   │   ├── common_func.h
│   │   ├── dfs_func.c
│   │   ├── dfs_func.h
│   │   ├── dfs_func_pc.c
│   │   ├── gen_files.c
│   │   ├── test_delete.c
│   │   ├── test_delete.sh
│   │   ├── test_download.c
│   │   ├── test_download.sh
│   │   ├── test_types.h
│   │   ├── test_upload.c
│   │   └── test_upload.sh
│   └── tracker
│       ├── Makefile.in
│       ├── fdfs_server_id_func.c
│       ├── fdfs_server_id_func.h
│       ├── fdfs_shared_func.c
│       ├── fdfs_shared_func.h
│       ├── fdfs_trackerd.c
│       ├── tracker_dump.c
│       ├── tracker_dump.h
│       ├── tracker_func.c
│       ├── tracker_func.h
│       ├── tracker_global.c
│       ├── tracker_global.h
│       ├── tracker_http_check.c
│       ├── tracker_http_check.h
│       ├── tracker_mem.c
│       ├── tracker_mem.h
│       ├── tracker_proto.c
│       ├── tracker_proto.h
│       ├── tracker_relationship.c
│       ├── tracker_relationship.h
│       ├── tracker_service.c
│       ├── tracker_service.h
│       ├── tracker_status.c
│       ├── tracker_status.h
│       └── tracker_types.h
└── 说明.htm

35 directories, 227 files