Merge pull request #820 from Motakjuq/fix/docs
Remove links from storage types
Fixes for multiple issues related to full text search:
- improved fulltext indexing of values in multiple languages (#752) - corrected language handling in full text search functions (#771) - string index type verification (#768)
Make v0.7.5 default in nginx config
Fix an issue where browser serves cached older version of doc
Remove hardcoded path for proper versioning
return error if attribute is not indexed
Remove trace package from vendoring to avoid issues with projects dep…
…endent upon Dgraph
Stop fighting over food. Use a random algorithm to decide which resta…
…urant to order from.
Run query on app load if a playQuery cookie is present
Implement /share endpoint to handle sharing of query
Connect dashboard to the /share endpoint
Break hash collision in a single query rather than two
Move hash and mutation logic to server for security
Remove unnecessary methods and properly escape the queries
Additional filtering that ensures the returned values are matched in the language specified in function invocation.
Trigram indexing for regular expressions
Implementation of trigram indexing to avoid scanning/matching of all values with regular expression. New tokenizer added (TrigramTokenizer). Task processing for regexp function changed: - Trigram index is used to narrow search space. - Only values returned from trigram index lookup are matched with regular expression. If regexp is to wide-ranging (like: .*), or more than 1000000 values are returned for trigram, execution is stopped, because of performance reasons.
Merge pull request #853 from dgraph-io/dashboard/autoplay-doc
Implement /share endpoint
Fix schema backup restore (#866)
* Fix schema backup restore * Use file ext to check if is gzip or plain text * Use HasSuffix to check file ext
Regexp documentation - trigrams