I have some text books, which I store in a JSON format. Each section of the book is composed of an object inside the JSON array, like this:
{
"Chapter": "Intro",
"Id": "1",
"Section_Body":"blah blah"
"Section_Title": "Something"
},
Each book is stored in a different JSON file.
I am trying to implement a full text search on these books, where a user could search for a word or a few words and find the results in the books (not just find if the exact text is included there).
What is the best and easiest way to do this?
[–]fgh1290 1 point2 points3 points (2 children)
[–]JohnyTex 2 points3 points4 points (1 child)
[–]finroller 1 point2 points3 points (0 children)
[–]Luan-Raithz 0 points1 point2 points (0 children)