嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 6 元微信扫码支付:6 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
分布式文件系统FastDFS
FastDFS 是一款开源的分布式文件系统,功能主要包括:文件存储、文件同步、文件访问等,解决了文件大容量存储和高性能访问的问题。FastDFS 特别适合以文件为载体的在线服务,如图片、视频、文档等等。
FastDFS用C语言实现,支持 Linux、FreeBSD、MacOS 等类 UNIX 系统。FastDFS 类似 google FS,属于应用级文件系统,不是通用的文件系统,只能通过专有 API 访问,目前提供了 C 和 Java SDK,以及 PHP 扩展 SDK。
.
├── fastdfs-master
│ ├── 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_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_nio.c
│ │ ├── storage_nio.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
│ │ ├── 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_nio.c
│ ├── tracker_nio.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
└── 分布式文件系统FastDFS.zip
20 directories, 183 files