mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-01 13:48:56 +08:00

* Add redis caching for thing and channel connections Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Fix authorization caching flow Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com> * Update things documentation Signed-off-by: Aleksandar Novakovic <aleksandar.novakovic@mainflux.com>
23 lines
362 B
Go
23 lines
362 B
Go
// +build !appengine
|
|
|
|
package util
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
// BytesToString converts byte slice to string.
|
|
func BytesToString(b []byte) string {
|
|
return *(*string)(unsafe.Pointer(&b))
|
|
}
|
|
|
|
// StringToBytes converts string to byte slice.
|
|
func StringToBytes(s string) []byte {
|
|
return *(*[]byte)(unsafe.Pointer(
|
|
&struct {
|
|
string
|
|
Cap int
|
|
}{s, len(s)},
|
|
))
|
|
}
|