acoustid index
v2022.02.03
Construyendo desde el código fuente:
zig build
Pruebas en ejecución:
zig build test --summary all
Servidor en ejecución:
zig build run -- --dir /tmp/fpindex --port 8080 --log-level debug
Devuelve información sobre un índice.
GET /:indexname
Crea un nuevo índice.
PUT /:indexname
Elimina un índice.
DELETE /:indexname
Realiza múltiples operaciones en un índice.
POST /:indexname/_update
{
"changes" : [
{ "insert" : { "id" : 1 , "hashes" : [ 100 , 200 , 300 ]}},
{ "delete" : { "id" : 2 }}
]
}
Busca una huella digital en el índice.
POST /:indexname/_search
{ "query" : [ 100 , 200 , 300 ], "timeout" : 10 }