aboutsummaryrefslogtreecommitdiff
path: root/go
AgeCommit message (Collapse)AuthorFilesLines
2016-06-02directory structure change to work with glideChris Lu160-16378/+0
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
2016-06-02add missing unlock()!!!!!Chris Lu1-0/+1
2016-05-30rwlock concurrent read mapChris Lu7-25/+45
2016-05-27fix concurrent write mapChris Lu1-1/+13
fix https://github.com/chrislusf/seaweedfs/issues/311
2016-05-26add missing parameters.Chris Lu1-2/+2
strange git errors happen twice since adding glide.
2016-05-25bind ip address when starting filerChris Lu2-2/+4
fix https://github.com/chrislusf/seaweedfs/issues/290
2016-05-24clean up old config only when peers are changed.Chris Lu2-35/+47
fix https://github.com/chrislusf/seaweedfs/issues/307
2016-05-23add glide to manage dependencyChris Lu2-0/+123
fix https://github.com/chrislusf/seaweedfs/issues/256
2016-05-23master: redirect handler accept collection parameteryangrun1-2/+3
2016-05-19lock node.childrenChris Lu1-3/+20
2016-05-19lock dn.volumesChris Lu4-4/+21
2016-05-13properly release memoryChris Lu5-7/+7
fix https://github.com/chrislusf/seaweedfs/issues/301
2016-05-12Fix Content-Disposition header; add dl=(0|1) URI param to use inline ↵Alexander Kovalenko1-1/+7
(default) or attachment
2016-05-09close current needle map when switchingChris Lu1-0/+1
2016-05-09do not forget to vacuum if cluster changesChris Lu1-2/+2
2016-05-05return nil if no errorChris Lu1-0/+3
fix https://github.com/chrislusf/seaweedfs/issues/299
2016-04-28fix refactoring errorChris Lu1-3/+3
2016-04-28use detailed map of errors for distributed operationsChris Lu1-21/+42
2016-04-26just refactoringChris Lu2-20/+36
2016-04-26separate into 2 files, no logic changeChris Lu2-36/+44
2016-04-17correct cache: fix racing conditionchrislusf2-9/+7
2016-04-15adjust to real case cache sizechrislusf1-2/+2
2016-04-15add []byte caching and poolingchrislusf4-34/+82
fixes https://github.com/chrislusf/seaweedfs/issues/211
2016-04-15fmtchrislusf1-2/+2
2016-04-14improve performance a little bit when having white listchrislusf1-3/+1
2016-04-14Added /favicon.ico handlerVitaly Baev5-0/+253
2016-04-14mark it as 0.71betachrislusf1-1/+1
2016-04-14pooling []bytechrislusf9-7/+216
reduce the number of requests to make([]byte)
2016-04-14make VolumeLayout thread safechrislusf1-3/+15
2016-04-11remove test imageChris Lu1-0/+0
2016-04-11releasing 0.70Chris Lu2-1/+1
2016-04-11[MOD] fix a bug.if node is nil will get an panic.张远浩1-1/+1
2016-04-11modify the lockbluefoxah1-3/+2
It seems that we did not use the feture of rwlock now. delete the sync.Mutex only use sync.RWMutex.
2016-04-10clearer error messagechrislusf1-17/+11
2016-04-10storage: faster ParseKeyHashJianfei Wang1-11/+18
2016-04-10storage: add test for ParseKeyHashJianfei Wang2-1/+46
2016-04-10Revert "Merge pull request #284 from thinxer/binary"chrislusf12-123/+117
This reverts commit 3523ad523929870aa8d4a7741ee8e152cfd40489, reversing changes made to 5d100994b1b9c6679113c8dd73f97aff85397f02.
2016-04-10storage: do not copy sync.Mutex by valueJianfei Wang1-4/+4
2016-04-09replace util/bytes.go with binary.BigEndianJianfei Wang11-117/+78
2016-04-09storage: add test for ParseKeyHashJianfei Wang2-1/+46
2016-04-08Revert "Merge pull request #281 from thinxer/binary"chrislusf11-63/+109
This reverts commit a87fe8ffcec7a5210bf97301e2951eea51a0a0ec, reversing changes made to 6876bfa68524d4fc0a961f89dc29e53fbc654ea5.
2016-04-06replace util/bytes.go with binary.BigEndianJianfei Wang11-109/+63
2016-04-04avoid same directory with different dir idschrislusf1-21/+36
fix https://github.com/chrislusf/seaweedfs/issues/277
2016-04-01use klauspost/crc32 instead of hash/crc32Alexandr Razumov1-1/+1
2016-03-30fix testschrislusf1-4/+4
2016-03-30add lock to dir children mapchrislusf1-16/+44
fix https://github.com/chrislusf/seaweedfs/issues/273
2016-03-08adjust reading ip addresschrislusf1-1/+1
adjust reading ip address
2016-03-08add redis passwordchrislusf4-6/+9
fix https://github.com/chrislusf/seaweedfs/issues/263
2016-02-27Fix chunk manifest replicate upload errortnextday2-3/+30
Escape the redirect url in volume read handler
2016-01-17Update filer_server_handlers.goXiaodong Huo1-77/+40
filer service PUT method update file while POST method create file