タグ

2017年8月30日のブックマーク (3件)

  • プロダクションで2年間Redis Clusterを運用してみて - Qiita

    TL;DR Redis Clusterで運用は当に楽になった でも、Redis 4.0は不安 Redis Clusterで一番怖いのはDisk IO 特にフェイルオーバーなどのFull Resync時 Redisとは? 高速なインメモリ型のKVS シングルスレッド 豊富なデータ構造(次ページにて詳細) 豊富な操作(次々ページにて詳細) 豊富なデータ構造 key-value型 hash型(key-field-value) set型(集合演算ができる) sorted set型(スコア付きset) 任意の型(redis modules機能) 豊富な操作 インクリメントや和集合などなど lua scriptも実行できちゃう シングルスレッドだからatomicな処理になる Redisの問題点 writeがスケールしない 気軽に停止できない サーバー再起動やバージョンアップなど Redis Clus

    プロダクションで2年間Redis Clusterを運用してみて - Qiita
  • goaを触ってみる - Qiita

    $ dep dep is a tool for managing dependencies for Go projects Usage: dep <command> Commands: init Initialize a new project with manifest and lock files status Report the status of the project's dependencies ensure Ensure a dependency is safely vendored in the project prune Prune the vendor tree of unused packages Examples: dep init set up a new project dep ensure install the project's dependencies

    goaを触ってみる - Qiita
  • Vueのあれこれ - Qiita

    的に公式ドキュメントから、自分の忘れやすいところを抜き出しています。 公式ドキュメント v-if, v-show(cssのdisplay:none;) 一般的に、v-if はより高い切り替えコストを持っているのに対して、 v-show はより高い初期描画コストを持っています。 そのため、とても頻繁に何かを切り替える必要があれば v-show を選び、条件が実行時に変更することがほとんどない場合は、v-if を選びます。 computed, method vuetemplateの中にmethodやcomputedを書くとそれがvue.jsによって監視されるんだけど、computedの場合は結果をキャッシュするからtemplateの中に何か処理を書く場合はcomputedを使用するのがおすすめやな template以外で何か処理をする場合はmethodを使う methods ビューモデル

    Vueのあれこれ - Qiita