Relative to issue #865
This allows to not have the _id field indexed, but still be able to fetch docs by prefix id.
The query and filter format could be :
{
"ids_prefix" : {
"type" : "my_type",
"values" : ["1", "4", "10"]
}
}
or
{
"ids_prefix" : {
"type" : "my_type",
"prefix" : "1"
}
}