golang

nginxでgoを動かす

nginx上でgoを動かしてみたのでその手順をば。 nginxのインストール 今回の環境はローカルのmacで構築しています。 brew install nginx でnginxを落とします brewでダウンロードすると、/usr/local/etc/nginx にnginx.confが作成されます。 awsのubuntu環境…

Goのsliceをredisで管理する

Goで作成したSliceをredisで管理しようとして結構はまったのでメモ。 商品のSliceを作成し、それをredisに入れて取り出すところまで import ( "encoding/json" "github.com/garyburd/redigo/redis" ) type Product Struct { Id uint Title string Price uint…