Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

plundra/es3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

es3 - even simpler storage service
==================================

About:
The goal is to create a very minimalistic storage service, without leaving out
reliabilty; by replicating the data in a (hopefully) very simple manner.

Currently in a proof-of-concept state.

Example usage:

 Server A:
  $ mkdir /tmp/es3storage
  $ grep REPLICATION_URL config.py
  REPLICATION_URL = "http://server-b:7070/"
  $ ./main.py

 Server B:
  $ mkdir /tmp/es3storage
  $ grep REPLICATION_URL config.py
  REPLICATION_URL = "http://server-a:7070/"
  $ ./main.py

 Client (upload):
  $ curl -X PUT -T logo.png http://server-a:7070/logo.png
 
 Client (fetch):
  $ curl -O http://server-b:7070/logo.png

About

es3 - even simpler storage service

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages