Skip to content

Instantly share code, notes, and snippets.

View mychaelstyle's full-sized avatar

Masanori Nakashima mychaelstyle

View GitHub Profile
@mychaelstyle
mychaelstyle / command
Created March 4, 2014 11:27
PlayFramework2.x ログの設定でSyslogAppenderを使う ref: http://qiita.com/mychaelstyle/items/e9e9df1582aa3e7a7e47
./target/universal/stage/bin/[yourapp] -Dlogger.resource=logger-prod.xml
@mychaelstyle
mychaelstyle / Build.scala
Created February 24, 2014 10:09
Playframework2.2でmemcachedを利用する ref: http://qiita.com/mychaelstyle/items/00e2699ad740ca5c9738
val appDependencies = Seq(
"com.github.mumoshu" %% "play2-memcached" % "0.3.0.2"
)
val main = play.Project(appName, appVersion, appDependencies).settings(
resolvers += "Spy Repository" at "http://files.couchbase.com/maven2"
)
@mychaelstyle
mychaelstyle / build.gradle
Created January 20, 2014 13:16
gradleを利用した並行テストのススメ(1) ref: http://qiita.com/mychaelstyle/items/c5def5241e96cab3d2a7
test {
maxParallelForks 10
}