DISCLAIMER: I've never been a DB guru. And I'm only getting started with Elastic Search. :)
I'm creating a Dictionary-type Database.
In MySQL terms, I'd have a table of "Words", like this:
|-------------------
| Words
|-------------------
| id
| name
| part_of_speech
| language
|-------------------
And a table of "Translations", linking words together like:
|-------------------
| Translations
|-------------------
| word_a_id
| word_b_id
| sense
|-------------------
How could that be migrated to Elastic Search?
I have created an index dictionary
with a type word
.
How could I set a translations
table and still keep the references to the existing "words" ? Am I missing something conceptual?