engine icon indicating copy to clipboard operation
engine copied to clipboard

Added a GET: /search/suggest/user route for @user tags.

Open hopeseekr opened this issue 7 years ago • 1 comments

Documentation:

Every user: GET: /api/v2/search/suggest/user

Response:

{
    "entities": [
        "user1", "user2", "user3"...
    ]
}

Filtered users by matching the beginning of the usernames:

GET: /api/v2/search/suggest/user?username={searchString}

Response:

{
    "entities": [
        {searchString}1", "{searchString}", "{searchString}"...
    ]
}

If no usernames are found, it will return an empty entities: [] array.

The full user's list is cached using the default caching implementation (currently Redis) for 5 minutes ensuring that the Cassandra DB isn't raped by multiple requests.


This change is Reviewable

hopeseekr avatar Nov 14 '18 05:11 hopeseekr

I originally was going to use the route /v2/search/suggest/userTags, but I saw several instances in the frontend code that called the /search/suggest/user route, which didn't exist, so I implemented it.

hopeseekr avatar Nov 14 '18 05:11 hopeseekr