Fuzzy search and attempt to create an object in Orion

Does the new version (0.24) of Orion mean a fuzzy search (approximate search of strings) over objects?

In addition, I tried to create an object with an empty string, but although the server returns 201, the object is not created.

//url to create entity (POST)
http://some.ip:port/v2/entities
//payload:
{
  "type": "Test",
  "id": "Test.1",
  "nombre": ""
}
//reponse
code 201

//url to list entities (GET)
http://some.ip:port/v2/entities?type=Test
//response
[]
+4
source share
2 answers

This case does not work in Orion 0.24.0 due to an error that was recently resolved in the development branch. The fix will be available in the version next to 0.24.0, or 0.24.1, or 0.25.0 (the number has not yet been accepted at the time of this writing) by the end of September 2015.

0
source

, NGSIv2. /, Orion, , .

0

Source: https://habr.com/ru/post/1607760/


All Articles