mirror of
https://github.com/kataras/iris.git
synced 2025-03-14 08:26:26 +01:00
remove second "and" from sessions/sessiondb/file#SerializeBytes comment.
Former-commit-id: b648f43eb2827dbb682ef3aac7f99643a15619a5
This commit is contained in:
parent
94043bc117
commit
36e6fb37b8
36
README.md
36
README.md
|
@ -2,7 +2,7 @@
|
|||
|
||||
Iris is a fast, simple and efficient micro web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.
|
||||
|
||||
[](http://iris-go.com/graph)
|
||||
<!-- [](http://iris-go.com/graph) -->
|
||||
[](https://travis-ci.org/kataras/iris)
|
||||
[](http://goreportcard.com/report/kataras/iris)
|
||||
[](https://github.com/kataras/iris/issues?q=is%3Aopen+is%3Aissue)
|
||||
|
@ -51,33 +51,6 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a b
|
|||
* [Get Hired](#-get-hired)
|
||||
* [People](#-people)
|
||||
|
||||
<!--
|
||||
|
||||
# Mo, 10 July 2017 | v8.0.0
|
||||
|
||||
### 📈 One and a half years with Iris and You...
|
||||
|
||||
- 7070 github stars
|
||||
- 749 github forks
|
||||
- 1m total views at its documentation
|
||||
- ~800$ at donations (there're a lot for a golang open-source project, thanks to you)
|
||||
- ~550 reported bugs fixed
|
||||
- ~30 community feature requests have been implemented
|
||||
|
||||
### 🔥 Reborn
|
||||
|
||||
As you may have heard I have huge responsibilities on my new position at Dubai nowadays, therefore I don't have the needed time to work on this project anymore.
|
||||
|
||||
After almost a month of negotiations and searching I succeed to find a decent software engineer to continue my work on the open source community.
|
||||
|
||||
The leadership of this, open-source, repository was transferred to [hiveminded](https://github.com/hiveminded).
|
||||
|
||||
These types of projects need heart and sacrifices to continue offer the best developer experience like a paid software, please do support him as you did with me!
|
||||
|
||||
> Please [contact](https://kataras.rocket.chat/channel/iris) with the project team if you want to help at the development process!
|
||||
|
||||
-->
|
||||
|
||||
### 🚀 Installation
|
||||
|
||||
The only requirement is the [Go Programming Language](https://golang.org/dl/), at least version 1.8
|
||||
|
@ -312,7 +285,6 @@ The _iris_ philosophy is to provide robust tooling for HTTP, making it a great s
|
|||
_iris_ does not force you to use any specific ORM. With support for the most popular template engines, websocket server and a fast sessions manager you can quickly craft your perfect application.
|
||||
|
||||
|
||||
|
||||
The awesome _iris_ community is always adding new examples, [_examples](_examples/) is a great place to get started!
|
||||
|
||||
Read the [godocs](https://godoc.org/github.com/kataras/iris) for a better understanding.
|
||||
|
@ -335,11 +307,11 @@ $ go get -u github.com/iris-contrib/middleware/...
|
|||
|
||||
#### 📈 One and a half years with You...
|
||||
|
||||
- 7070 github stars
|
||||
- 749 github forks
|
||||
- 7210 github stars
|
||||
- 766 github forks
|
||||
- 1m total views at its documentation
|
||||
- ~800$ at donations (there're a lot for a golang open-source project, thanks to you)
|
||||
- ~550 reported bugs fixed
|
||||
- ~554 reported bugs fixed
|
||||
- ~30 community feature requests have been implemented
|
||||
|
||||
Thank You for your trust!
|
||||
|
|
|
@ -110,7 +110,7 @@ func (d *Database) Update(sid string, newValues map[string]interface{}, expireDa
|
|||
}
|
||||
}
|
||||
|
||||
// SerializeBytes serializes the "m" into bytes using gob encoder and and returns the result.
|
||||
// SerializeBytes serializes the "m" into bytes using gob encoder and returns the result.
|
||||
func SerializeBytes(m interface{}) ([]byte, error) {
|
||||
buf := new(bytes.Buffer)
|
||||
enc := gob.NewEncoder(buf)
|
||||
|
|
Loading…
Reference in New Issue
Block a user