unfoldingWord / translationCore

Repository for the desktop application translationCore
https://www.translationcore.com
Other
36 stars 11 forks source link

Look into moving WORDMAP into server process #6546

Open mannycolon opened 4 years ago

mannycolon commented 4 years ago

Story Explanation

User Story

As a [type of user], I want [some goal] so that [some reason].

Features / Specifications

Definition of Done

Additional Context

Mockups

da1nerd commented 4 years ago

Additionally I have an experiment with moving wordMAP into a web worker. See this branch here https://github.com/unfoldingWord/wordAlignment/tree/wordmap-web-worker/src/utils/wordmapWorker

It's currently not any faster, hence "experiment", but what I learn from this may help with other tasks. Right now the biggest overhead I'm experiencing is communicating between threads. I think we'll encounter this with any code we move to the main thread or web workers. So we'll probably need to transmit messages between threads in batches.