I want to find ten most popular net words from specific anime comments. Then, store them in db.
Dependency :sortdata-sort_anime
definition of done: Save ten most popular net words from specific anime comments into collection "popular_comment" following schema:
{
aid: 123,
comment:[
{name:faef,
occurrence: 12},
{name:abcd,
occurrence: 14}
]
}
I want to find ten most popular net words from specific anime comments. Then, store them in db. Dependency :sortdata-sort_anime definition of done: Save ten most popular net words from specific anime comments into collection "popular_comment" following schema: { aid: 123, comment:[ {name:faef, occurrence: 12}, {name:abcd, occurrence: 14} ] }