This is a simple web application that allows users to input keywords for searching and displays results matching the keywords.
Application entry: https://jeffreymaomao.github.io/keywordsearch/dist
The data structure is stored in a NoSQL (Non-SQL) database management system. Here’s the structure:
{
"<element id>": {
"p": "<parent id>",
"n": "<name>",
"k": ["<key1>", "<key2>", ...],
"t": "<time>",
...
},
"<element id>": {
"p": "<parent id>",
"n": "<name>",
"k": ["<key1>", "<key2>", ...],
"t": "<time>",
...
},
...
}
<element id>
: Unique identifier for each element."p"
: Parent id of the element."n"
: Name of the element."k"
: Array of keywords associated with the element."t"
: Time of creation or last modification of the element.Contributions and suggestions are welcome!