All Downloads are FREE. Search and download functionalities are using the official Maven repository.

feature4s.aerospike.package.scala Maven / Gradle / Ivy

package feature4s

import com.aerospike.client.Key

package object aerospike {
  val DefaultSetName: String = "features"

  val FeatureNameFieldName: String = "name"
  val ValueFieldName: String = "value"
  val DescriptionFieldName: String = "description"

  def key(featureName: String, namespace: String): Key =
    new Key(namespace, DefaultSetName, featureName)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy