Stream: implementers
Topic: Database
David Hay (May 11 2016 at 13:33):
Is there a database table structure for fhir
Christiaan Knaap (May 11 2016 at 14:19):
In Spark we have none, since MongoDB does documents. If you want to support all resourcetypes generically, the structure of the resources is less important (think: blob / xml column), than the structure of your index.
James Agnew (May 11 2016 at 14:39):
I seems like most "purpose built" servers have gone with one of two approaches:
- Use a document database like Mongo or PGSQL's native JSON support (E.g. Spark, Fhirbase)
- Use a SQL database with documents stored in a CLOB and some index tables to support it (e.g. HAPI, Grahame and Brian's servers, etc)
David Hay (May 11 2016 at 15:01):
Thanks guys - this was test in my tutorial to show how reactive the community is to questions! Much appreciate
James Agnew (May 11 2016 at 15:02):
Lol, did we pass?
Christiaan Knaap (May 11 2016 at 15:03):
Already wondered why you would not know this for yourself :-)
Marten Smits (May 11 2016 at 15:06):
We will probably doubt all your future questions David. Or react very fast to make your tutorial look cool.
David Hay (May 11 2016 at 18:07):
David Hay (May 11 2016 at 18:07):
and yes - the audience was suitably impressed!
Siddhartha Maity (Sep 07 2021 at 05:10):
Hello everyone, I am here to ask whether I can use HAPI JPA Server to use MongoDB for storing data,? If not, then what is the best way to incorporate MongoDB support along with the power of Java Sprint boot? Thanks in advance.
Lloyd McKenzie (Sep 07 2021 at 13:36):
You might want to ask on #hapi
Last updated: Apr 12 2022 at 19:14 UTC