Created
February 24, 2014 10:09
-
-
Save mychaelstyle/9185011 to your computer and use it in GitHub Desktop.
Playframework2.2でmemcachedを利用する ref: http://qiita.com/mychaelstyle/items/00e2699ad740ca5c9738
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
memcached.1.host="mumocached1:11211" | |
memcached.2.host="mumocached2:11211" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5000:com.github.mumoshu.play2.memcached.MemcachedPlugin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment