File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ RDB as cache storage
77## Install
88
99``` scala
10- libraryDependencies += " com.github.tototoshi" %% " dbcache-mysql" % " 0.3 .0"
10+ libraryDependencies += " com.github.tototoshi" %% " dbcache-mysql" % " 0.4 .0"
1111
1212// or
13- // libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.3 .0"
13+ // libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.4 .0"
1414```
1515
1616## Setup
@@ -111,7 +111,7 @@ Tue Apr 26 22:26:57 JST 2016: None
111111Add dbcache-play to dependencies.
112112
113113``` scala
114- libraryDependencies += " com.github.tototoshi" %% " dbcache-play" % " 0.3 .0"
114+ libraryDependencies += " com.github.tototoshi" %% " dbcache-play" % " 0.4 .0"
115115```
116116
117117The code below is Play integration example with scalikejdbc
@@ -141,7 +141,7 @@ class MySQLCacheApiProvider @Inject()(environment: Environment) extends Provider
141141}
142142```
143143
144- Disable EhCache which is the default cache backend of Play 2.7 .
144+ Disable EhCache which is the default cache backend of Play.
145145
146146```
147147play.modules.disabled += "play.api.cache.ehcache.EhCacheModule"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ lazy val commonSettings = Seq(
1414 scalacOptions ++= Seq (" -deprecation" ),
1515 scalaVersion := " 2.12.10" ,
1616 crossScalaVersions := Seq (" 2.13.1" , " 2.12.10" ),
17- version := " 0.4.0-SNAPSHOT "
17+ version := " 0.4.0"
1818)
1919
2020lazy val root = (project in file(" ." ))
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ container_id=$(docker run \
1010 -d mysql:5.7)
1111
1212echo -n ' Starting mysql'
13- for i in $( seq 1 10 )
13+ for i in $( seq 1 15 )
1414do
1515 echo -n ' .'
1616 sleep 1
You can’t perform that action at this time.
0 commit comments