Skip to content

Commit 2babf13

Browse files
committed
added licene header to all source files
1 parent 7837e6f commit 2babf13

17 files changed

+56
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Redix
22
=======
3+
[![Build Status](https://travis-ci.com/alash3al/redix.svg?branch=master)](https://travis-ci.com/alash3al/redix)
4+
35
> a fast NoSQL DB, that uses the same [RESP](https://redis.io/topics/protocol) protocol and capable to store terabytes of data, also it integrates with your mobile/web apps to add real-time features, soon you can use it as a document store cause it should become a multi-model db. `Redix` is used in production, you can use it in your apps with no worries.
46
57
Features

commands_hash.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

commands_list.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

commands_pubsub.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

commands_ratelimit.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

commands_strings.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

commands_utils.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

helpers.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

init.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

kvstore/badger/badger.go

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
4+
//
5+
// badger is a db engine based on badgerdb
16
package badger
27

38
import (

kvstore/bolt/bolt.go

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
4+
//
5+
// bolt is a db engine based on boltdb
16
package bolt
27

38
import (

kvstore/db.go

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
4+
//
5+
// kvstore is the main interface that any of db engine MUST implement
16
package kvstore
27

38
// DB Interface

main.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

server_http.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

server_resp.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

types.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

vars.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright 2018 The Redix Authors. All rights reserved.
2+
// Use of this source code is governed by a Apache 2.0
3+
// license that can be found in the LICENSE file.
14
package main
25

36
import (

0 commit comments

Comments
 (0)