aboutsummaryrefslogtreecommitdiff
path: root/go/operation/submit.go
AgeCommit message (Collapse)AuthorFilesLines
2016-06-02directory structure change to work with glideChris Lu1-194/+0
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
2015-12-14format changeschrislusf1-3/+2
2015-12-14Rename ChunkManifest.GetData to ChunkManifest.Marshaltnextday1-1/+1
2015-12-02updatetnextday1-1/+1
2015-12-02`FilePart.Upload` use base name instead of full pathtnextday1-3/+4
fix chunked file download error
2015-12-02complete submit chunked filetnextday1-8/+35
2015-04-16Change all chrislusf/weed-fs links to point to chrislu/seaweedfsStuart P. Bentley1-2/+2
2015-04-16Use public url for returned file url resultchrislusf1-1/+1
2015-04-06change count to uint64 to fix #109chrislusf1-1/+1
fix https://github.com/chrislusf/weed-fs/issues/109
2015-03-10follow golint suggestionschrislusf1-1/+1
2015-03-09Add read only public port on volume serverchrislusf1-1/+1
Add read only public port on volume server
2015-02-07merge conflictsChris Lu1-10/+22
2015-02-02Using Url instead of PublicUrl for volume serverchrislusf1-1/+1
Originally there are only url(ip + port), and publicUrl. Because ip was used to listen for http service, it has less flexibility and volume server has to be accessed via publicUrl. Recently we added ip.bind, for binding http service. With this change, url can be used to connect to volume servers. And publicUrl becomes a free style piece of url information, it does not even need to be unique.
2014-10-26formatting code by: goimports -w=true .Chris Lu1-1/+2
2014-09-25use github.com/chrislusf instead of github.com/aszxqwwyy1-1/+1
2014-09-25use github.com/aszxqw instead of code.google.com/pwyy1-1/+1
2014-09-20add TTL supportChris Lu1-5/+6
The volume TTL and file TTL are not necessarily the same. as long as file TTL is smaller than volume TTL, it'll be fine. volume TTL is used when assigning file id, e.g. http://.../dir/assign?ttl=3h file TTL is used when uploading
2014-04-15Add types to uploadingChris Lu1-7/+7
2014-03-09benchmarking writing data to a specific collectionChris Lu1-15/+19
2014-03-09refactoringChris Lu1-9/+11
2013-11-19avoid nil cases when errorChris Lu1-1/+4
2013-11-18fix duplicated file id list entries when uploading large fileChris Lu1-5/+2
2013-11-18add option to split large files into parts and then uploadChris Lu1-10/+51
2013-09-01issue 43 "go fmt" chagnes from "Ryan S. Brown" <sb@ryansb.com>Chris Lu1-2/+2
some basic changes to parse upload url
2013-08-14Only limit input parameter to io.ReaderChris Lu1-8/+10
2013-08-14refactoring submit operationChris Lu1-38/+51
2013-08-13refactoring codeChris Lu1-0/+91
reusable code by go clients