Redis on ElastiCache で、AOF無効時でどの程度性能差が発生するのかの把握
サーバー | 配置 | Redisバージョン | OS | インスタンスタイプ | Slave 有無 |
---|---|---|---|---|---|
Client | Private VPC内部 | - | Amazon Linux | m2.4xlarge | - |
package p; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.HashSet; | |
import java.util.List; | |
import java.util.Set; | |
import java.util.regex.Pattern; |
(最終更新: 2015/4/19)
License: CC BY-SA 4.0
/home/travis/build.sh: line 175: ./gradlew: Permission denied | |
Fix by setting the executable flag on your gradlew file. | |
Either | |
chmod +x gradlew (on unix systems) | |
OR |
digraph G { | |
{ | |
JavaScriptがわかる [shape=diamond] | |
型がほしい [shape=diamond] | |
"Flash/ActionScript3が青春だった" [shape=diamond] | |
DeNAに勤めている [shape=diamond] | |
"Ruby or Pythonが好き" [shape=diamond] | |
クラスはほしい [shape=diamond] | |
JavaScriptの文法に不満がある [shape=diamond] | |
関数型わかる [shape=diamond] |
import java.util.Random; | |
import sun.misc.Unsafe; | |
import sun.nio.ch.DirectBuffer; | |
import java.lang.reflect.Field; | |
import java.nio.ByteBuffer; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; |
#! /usr/bin/env bash | |
### | |
# | |
# install_mysql.sh | |
# | |
# This script assumes your Vagrantfile has been configured to map the root of | |
# your application to /vagrant and that your web root is the "public" folder | |
# (Laravel standard). Standard and error output is sent to | |
# /vagrant/vm_build.log during provisioning. |
file_to_disk = './tmp/large_disk.vdi' | |
Vagrant::Config.run do |config| | |
config.vm.box = 'base' | |
config.vm.customize ['createhd', '--filename', file_to_disk, '--size', 500 * 1024] | |
config.vm.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', file_to_disk] | |
end |