You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
index/src/main/kotlin/moe/odango/index/config/ElasticSearchConfiguration.kt

9 lines
205 B
Kotlin

package moe.odango.index.config
data class ElasticSearchConfiguration(
val host: String = "localhost:9200",
val index: String = "index_anime",
val replicas: Int = 0,
val shards: Int = 2
)