whyfate
whyfate
**Is your feature request related to a problem? Please describe.** I have 100w patient data,and use identifier to search very slowly. ```http GET /fhir/Patient?identifier=test ```
When i read the `Spark`'s source code,I found that the `code` property was added when saved the `searchindex` of the `boolean` type,like this ```json { "active":{ "code": true } }...
http://build.fhir.org/search.html#revinclude
https://github.com/FirelyTeam/spark/blob/d9889ad7003c91eabfc6a302416fdf1ef4de8766/src/Spark.Engine/Search/ElementIndexer.cs#L476-L479 https://github.com/FirelyTeam/spark/blob/d9889ad7003c91eabfc6a302416fdf1ef4de8766/src/Spark.Engine/Search/ElementIndexer.cs#L494-L507 Why is the storage design different between `Code` and `Code`?