Skip to content

Instantly share code, notes, and snippets.

@AmirSoleimani
Created November 19, 2018 17:19
Show Gist options
  • Save AmirSoleimani/8a909849bd8411256cbcd2f70da9b213 to your computer and use it in GitHub Desktop.
Save AmirSoleimani/8a909849bd8411256cbcd2f70da9b213 to your computer and use it in GitHub Desktop.
Singleton Pattern - Golang (Simple)
package main
import (
"fmt"
"patterns/singleton"
)
func main() {
singleton.Set("blabla", "aaaaa")
fmt.Println(singleton.Get("blabla"))
}
package singleton
import (
"fmt"
"sync"
)
//singleton variables
type singleton map[string]interface{}
var (
// ensures that our type only gets initialized exactly once.
once sync.Once
instance singleton
)
//init once
func init() {
once.Do(func() {
fmt.Println("callll")
instance = make(singleton)
})
}
//Set key-value
func Set(key string, value interface{}) {
instance[key] = value
}
//Get return value
func Get(key string) interface{} {
return instance[key]
}
@freekman
Copy link

If you need design patterns there is quite a nice book

https://github.com/KeKe-Li/book/blob/master/Go/go-design-patterns.pdf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment