This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
License
twingly/MogileFsApi
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
MogileFsApi is a C# API for MogileFs (see http://danga.com/mogilefs/ and http://code.google.com/p/mogilefs/). Author: Hugo Hallqvist <[email protected]> License ======= Copyright 2010 Twingly AB. MogileFsApi is provided under the three-clause BSD License. See the included LICENSE.txt file for specifics. Examples ======== // Create a simple client against the server mogile1 var uri = new Uri("mogile://mogile1:6001"); var client = new MogileFsClient(new Uri[] { uri }); // Store a file var d = "testdomain"; var key = "testkey"; using (var filestream = new FileStream(@"C:\tmp\some_file.jpg", FileMode.Open)) { client.StoreFile(d, key, "original", filestream, 100000); } // Retrieve a file byte[] arr = client.GetFileBytes(d, key, 10000);
About
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published