mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 18:08:25 +00:00
First basic working solr search
This commit is contained in:
@ -25,6 +25,9 @@ case class Duration(nanos: Long) {
|
||||
|
||||
def formatExact: String =
|
||||
s"$millis ms"
|
||||
|
||||
override def toString(): String =
|
||||
s"Duration(${millis}ms)"
|
||||
}
|
||||
|
||||
object Duration {
|
||||
|
@ -17,7 +17,7 @@ case class Ident(id: String) {
|
||||
!isEmpty
|
||||
|
||||
def / (next: Ident): Ident =
|
||||
new Ident(id + "/" + next.id)
|
||||
new Ident(id + "." + next.id)
|
||||
}
|
||||
|
||||
object Ident {
|
||||
|
Reference in New Issue
Block a user