You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -130,8 +127,15 @@ return results.([]Result) // Type assert in order to use
130
127
131
128
## Gob Register Errors
132
129
133
-
The Redis storage driver stores the data in a `gob` encoded form. You have to register with the gob package the data type returned by the `SlowRetrieve` function. It can be done inside a `func init()`. Alternatively, you can set the `GobRegister` option to true. This will slightly impact concurrency performance however.
130
+
The Redis storage driver stores the data in a [`gob`](https://golang.org/pkg/encoding/gob/) encoded form. You have to register with the gob package the data type returned by the `SlowRetrieve` function. It can be done inside a `func init()`. Alternatively, you can set the `GobRegister` option to true. This will slightly impact concurrency performance however.
131
+
132
+
## Other useful packages
134
133
134
+
-[dataframe-go](https://github.com/rocketlaunchr/remember-go) - Statistics and data manipulation
135
+
-[dbq](https://github.com/rocketlaunchr/dbq) - Zero boilerplate database operations for Go
136
+
-[igo](https://github.com/rocketlaunchr/igo) - A Go transpiler with cool new syntax such as `fordefer` (defer for for-loops)
137
+
-[mysql-go](https://github.com/rocketlaunchr/mysql-go) - Properly cancel slow MySQL queries
138
+
-[react](https://github.com/rocketlaunchr/react) - Build front end applications using Go
0 commit comments