twingly / MogileFsApi

:warning: *UNMAINTAINED* MogileFS client in C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MogileFsApi is a C# API for MogileFs (see http://danga.com/mogilefs/ and http://code.google.com/p/mogilefs/).

Author: Hugo Hallqvist <hugo@twingly.com>

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

:warning: *UNMAINTAINED* MogileFS client in C#

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C# 100.0%