Genki Takiuchi

Results 103 comments of Genki Takiuchi

@mhevery Finally, I solved this issue. How about do this? https://stackblitz.com/edit/qwik-starter-l8gnoe?file=src%2Froutes%2Findex.tsx

This may be the minimal reproduction code: ```ts export default component$(() => { const state = useSignal(false); useTask$(({track}) => { track(() => state.value); state.value = true; }); return ( {JSON.stringify(state.value)}...

Oh, I didn't realized it. Would you please point me out the document of that C API? >If we don't store the source text data, we can't update our inverted...

Thank you for letting me know it. Can I call just `grn_column_index_update()` instead of storing/updating source text to data column and it is able to get the search result via...

Hmm, digging the source code around `grn_ii`, but it is a bit difficult to understand without document. BTW, I think writing novel code for the text search without source text...

Making the "black hole" data column is rough but simple. My use case is providing full text search for documents provided by other service via API. For such purpose, source...

After that, I found `grn_obj_search()` may be usable for my purpose instead of `grn_ii_sel()`. * update/insert text value to the index by `grn_column_index_update()` * query using the index without source...

I found that in node 9.x an unexpected warning (as follows) had caught and failed the test. ``` (node:2676) ExperimentalWarning: The http2 module is an experimental API. ``` So I...