# fastdfs-client **Repository Path**: zhangguorong/fastdfs-client ## Basic Information - **Project Name**: fastdfs-client - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-12-30 - **Last Updated**: 2021-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 文件上传到文件服务器底层封装 ## fastdfs-zyc(fastdfs监控管理工具) http://www.cnblogs.com/shihaiming/p/6283681.html ## 分布式文件系统FastDFS设计原理 http://blog.chinaunix.net/uid-20196318-id-4058561.html ## FastDFS https://github.com/happyfish100/fastdfs https://github.com/happyfish100/fastdfs/releases ## fastdfs-client-java https://github.com/happyfish100/fastdfs-client-java ## 分布式文件系统 FastDFS 5.0.5 & Linux CentOS 7 安装配置 http://blog.csdn.net/wlwlwlwl015/article/details/52619851 ## FastDFS 集群 http://www.cnblogs.com/ityouknow/p/7769142.html ## 手把手教你搭建FastDFS集群(上) http://blog.csdn.net/u012453843/article/details/68957209 ## 手把手教你搭建FastDFS集群(中) http://blog.csdn.net/u012453843/article/details/69055570 ## 手把手教你搭建FastDFS集群(下) http://blog.csdn.net/u012453843/article/details/69172423 ## 高并发下线程安全的单例模式(最全最经典) http://blog.csdn.net/cselmu9/article/details/51366946 1. 什么是单例、多例: 所谓单例就是所有的请求都用一个对象来处理,比如我们常用的service和dao层的对象通常都是单例的,而多例则指每个请求用一个新的对象来处理,比如action; 单例模式和多例模式说明: 1. 单例模式和多例模式属于对象模式。 2. 单例模式的对象在整个系统中只有一份,多例模式可以有多个实例。 3. 它们都不对外提供构造方法,即构造方法都为私有。 2. 如何产生单例、多例: 在通用的SSH中,单例在spring中是默认的,如果要产生多例,则在配置文件的bean中添加scope="prototype"; 3. 为什么用单例、多例: 之所以用单例,是因为没必要每个请求都新建一个对象,这样子既浪费CPU又浪费内存; 之所以用多例,是为了防止并发问题;即一个请求改变了对象的状态,此时对象又处理另一个请求,而之前请求对对象状态的改变导致了对象对另一个请求做了错误的处理; 用单例和多例的标准只有一个: 当对象含有可改变的状态时(更精确的说就是在实际应用中该状态会改变),则多例,否则单例; ## pom配置之:snapshot快照库和release发布库 http://blog.csdn.net/aitangyong/article/details/53332091 ## Maven setting.xml 配置详解 http://www.cnblogs.com/yangxia-test/p/4409736.html ## 发布到nexus release仓库 mvn deploy -P release ## 发布到nexus snapshots仓库 mvn deploy ## 配置中心选型 http://www.cnblogs.com/ityouknow/p/5584762.html ## 网站文件系统发展 http://www.cnblogs.com/ityouknow/p/5344857.html ## Linux定时备份MySQL并同步到其它服务器 http://www.cnblogs.com/ityouknow/p/5923489.html ## fastdfs断点续传 http://blog.csdn.net/kaka20099527/article/details/46608013 FastDFS、GlusterFS、Ceph、TFS几种分布式存储系统对比 http://f.dataguru.cn/thread-615656-1-1.html ## MongoDb gridfs-ngnix文件存储方案 http://www.cnblogs.com/wintersun/p/4622205.html?utm_source=tuicool ## Mongodb入门系列(2)——在linux下安装、启动、关闭MongoDB以及注意事项(详细) https://my.oschina.net/happyBKs/blog/382219 nginx和keepalived实现nginx高可用 http://blog.csdn.net/u012453843/article/details/69668663