Hi All,
I want to create a Dictionary application in GWT using DB as backend. My DB will contain thousands of letters and I want to fetch words that match the input from the user at run time. That means if a user will input a letter 'A' then all letters starting with A should be displayed and the list should change dynamically.
A solution to this can be querieng DB every time user inputs a letter but this can be time consuming and will hamper the performance. Can there be a better solution to implement this?