I start my first Lagom example via this command:
activator new my-first-system lagom-java
When I tried to start this project I noticed that I have an embedded Casandra started.
So I tried to disable this one to connect to my external Cassandra instance. To do that I used:
lagomCassandraEnabled in ThisBuild := false
lagomUnmanagedServices in ThisBuild := Map("cas_native" -> "http://ip:9042")
With this configuration, I succeed to connect to my Cassandra instance, but even that I still have a kind of heaviness in my build.
So I want to know by disabling Lagom Cassandra:
- it will be started but it will be not used? or
- it will be not downloaded So it will be not started?
Any help, please