To return expected results, you can:
Reduce the number of search terms.
Each term you use focuses the search further.
Check your spelling.
A single misspelled or incorrectly typed term can change your result.
Try substituting synonyms for your original terms.
For example, instead of searching for "java classes", try "java training"
Did you search for an IBM acquired or sold product ?
If so, follow the appropriate link below to find the content you need.
They are used for pagination of results.
If a complete result set contains 1000 results but you are using _limit to return the first 50, you can use _offset to paginate. For example,
1.0/topology/resources?_limit=50
returns results the first 50
1.0/topology/resources?_offset=50&_limit=50
returns results 50 to 100
1.0/topology/resources?_offset=50&_limit=50&_sort=+name
returns results 50 to 100 sorted by name
Note: You may use (%2B) instead of (+) encoded URL for _sort parameter as
/1.0/topology/resources?_sort=%2Bname