listary-plugin-example
listary-plugin-example copied to clipboard
Why does listary return slowly
For example, A simple search function:
async function search(query) { return [{ title: ":"+query }]; }
when I type something in listary, the result returns very slowly, about 1-2 second
Because every time listary runs Javascript code, it starts a new process to run the code, which is time consuming. Now or in the future, this problem will probably not be solved because listary's author has already abandoned it, so we can only optimize it as best we can.