Difference between revisions of "Camlistore"

From the Linux and Unix Users Group at Virginia Teck Wiki
Jump to: navigation, search
imported>Pew
(Undo revision 5523 by [[Special:Contributions/imported>Pew|imported>Pew]] ([[User talk:imported>Pew|talk]]))
(Tag: Undo)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
TODO: How does this relate to VTLUUG?
 
 
 
'''Camlistore''' is content-addressable, multi-layer, indexed storage. It seems really cool. This article assumes you want to put things in subdirectories of <code>${HOME}/proj</code>.
 
'''Camlistore''' is content-addressable, multi-layer, indexed storage. It seems really cool. This article assumes you want to put things in subdirectories of <code>${HOME}/proj</code>.
  
Line 29: Line 27:
  
 
[[Category:Howtos]]
 
[[Category:Howtos]]
[[Category:Pending deletion]]
+
[[Category:Software]]

Latest revision as of 08:17, 3 January 2019

Camlistore is content-addressable, multi-layer, indexed storage. It seems really cool. This article assumes you want to put things in subdirectories of ${HOME}/proj.

Build Instructions

Building Tip of Tree Go

$ mkdir ~/proj ; cd ~/proj
$ hg clone -u tip https://go.googlecode.com/hg/ go
$ cd go/src && ./all.bash
$ cd .. && export PATH=$PATH:$(pwd -P)/bin && export GOROOT=$(pwd -P)

Building Camlistore

$ cd ~/proj
$ git clone https://camlistore.org/r/p/camlistore
$ camlistore/build.pl allfast

Usage Instructions

~/proj/camlistore/dev-blobserver &
~/proj/camlistore/dev-camput --file server/go/camlistored/test/image-png.png

External Links