FastDFSNetCore

fastdfs async client 1.2.4: fix download file return bytes bug , suggest use IDownloadCallback 1.2.3: support big file upload and download 1.2.2: support QUERY_STORE_WITHOUT_GROUP_ONE 1.2.1: compatible with DnsEndPoint and fileExt first char is a dot 1.2.0: support download file 1.1.9: support appenderfile 1.1.7: 1. string zero memory copy 2. errorcode msg 1.1.6: use span arraypool reduce gc


Keywords
fastdfs, tcp
License
Apache-2.0
Install
Install-Package FastDFSNetCore -Version 1.2.7

Documentation

FastDFSNetCore

Build Status

Nuget Packages

Package NuGet Stable Downloads
FastDFSNetCore FastDFSNetCore FastDFSNetCore

Basic Usage

see Program.cs

Ngx_fastdfs_module

server {
          listen       80;
 
          location / {
            root   /path/to/fdfsstore/fdfs_storage/data;
          }
 
          location /group1/M00 {
            root /path/to/fdfsstore/fdfs_storage/data;
            ngx_fastdfs_module;                   
         }  
          
         location ~* /group1/M00/(.*?)_([0-9]+)X([0-9]+)\.(jpeg|jpg|gif|png)$ {
           root /path/to/fdfsstore/fdfs_storage/data;       
           set $h $2;
           set $w $3;
           rewrite /group1/M00/(.*?)_([0-9]+)X([0-9]+)\.(jpeg|jpg|gif|png)$ /$1.$4 break;
           image_filter_buffer 10M;
           image_filter resize $h $w;                 
        }        
}