Skip to content

Commit

Permalink
更新版本说明
Browse files Browse the repository at this point in the history
  • Loading branch information
tobato committed Mar 13, 2017
1 parent 77a56ed commit 8bb3e0f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.tobato</groupId>
<artifactId>fastdfs-client</artifactId>
<version>1.25.3-SNAPSHOT</version>
<version>1.25.4-SNAPSHOT</version>
<packaging>jar</packaging>

<name>fastdfs-client</name>
Expand All @@ -29,7 +28,8 @@
<connection>scm:git:[email protected]:tobato/FastDFS_Client.git</connection>
<developerConnection>scm:git:[email protected]:tobato/FastDFS_Client.git</developerConnection>
<url>https://github.com/tobato/FastDFS_Client</url>
</scm>
<tag>HEAD</tag>
</scm>

<parent>
<groupId>org.springframework.boot</groupId>
Expand Down
18 changes: 16 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ This is a java client lib for [FastDFS](https://github.com/happyfish100/fastdfs)
<version>1.2.7.RELEASE</version>
<relativePath />

JDK环境要求 1.7
* JDK环境要求 1.7
* FastDFS服务端 5.07 测试通过

##单元测试

Expand Down Expand Up @@ -59,7 +60,7 @@ Maven依赖为
<dependency>
<groupId>com.github.tobato</groupId>
<artifactId>fastdfs-client</artifactId>
<version>1.25.2-RELEASE</version>
<version>1.25.3-RELEASE</version>
</dependency>


Expand Down Expand Up @@ -95,6 +96,16 @@ Maven依赖为
- 192.168.1.105:22122
- 192.168.1.106:22122

如果有必要可以参考 apache.pool2 参数配置连接池属性

fdfs:
..其他配置信息..
pool:
#从池中借出的对象的最大数目
maxTotal: 153
#获取连接时的最大等待毫秒数100
maxWaitMillis: 102

###4.使用接口服务对Fdfs服务端进行操作

主要接口包括
Expand All @@ -105,4 +116,7 @@ Maven依赖为
4. AppendFileStorageClient - 支持文件续传操作的接口 (StorageServer接口)


##修改日志

查看[修改日志](/CHANGELOG.md)

0 comments on commit 8bb3e0f

Please sign in to comment.