hapi-fhir-jpaserver-starter
hapi-fhir-jpaserver-starter copied to clipboard
How to set DaoConfig Properties
Hey, I wonder how one can set properties within the DaoConfig
, e.g. disabling the delete operation or disabling :text
indexing for improving the performance (see docs).
Thanks a lot!
P.S. Probably related to #433.
Hello @RafaelWO did you end up figuring this out? I'm trying to find a solution to the same problem.
FWIW this is where they get set: https://github.com/hapifhir/hapi-fhir-jpaserver-starter/blob/master/src/main/java/ca/uhn/fhir/jpa/starter/common/FhirServerConfigCommon.java#L88
Pull requests to add additional config properties to the YAML file would gladly be accepted.
Hello @RafaelWO did you end up figuring this out? I'm trying to find a solution to the same problem.
@sabukar-fn No I did not. But following @jamesagnew's answer it seems that additional properties have to be set manually in the code and therefore require a PR.
I will see if I have time to create one.
@jamesagnew AFAIS the setting for disabling the index for :text
, called suppress_string_indexing_in_tokens
, is not part of the DaoConfig (see docs). How can we set this?