Let's make a prototype of this by building word2vec vectors during indexation and then making it possible to use the vectors. The questions to answer are:
resources consumption: how much more RAM/disk will be needed
indexation latency: how much higher it will be
functionality: what we can and what we can't do with that
search performance overhead: how enabling word2vec in an index will affect normal searches (that don't have anything to do with word2vec)
word2vec search performance: how fast is searching through the word2vec built structures
word2vec may be useful for
Some articles:
Let's make a prototype of this by building word2vec vectors during indexation and then making it possible to use the vectors. The questions to answer are: