- Language: en
22 results for full text search in version 1.11
-
Full text search
- … search lookup The simplest way to use full text search is to search a single …
-
QuerySet API reference
- … full-text search, taking advantage of full-text indexing. This is like contains but is significantly …
-
Django 1.10 release notes
- … full text search engine. You can search across multiple fields in your relational database, combine …
-
Search
- … full text search implementation built-in. While not as powerful as some other search engines …
-
The Django admin site
- … search for all records in which first_name is exactly 'john winston' (containing a space). @ Using the ‘@’ operator to perform a full text …
-
django.contrib.postgres
- … Full text search The search lookup SearchVector SearchQuery SearchRank Changing the search configuration Weighting queries …
-
Databases
- … full-text indexing and searching until MySQL 5.6.4. Since MySQL 5.5.5, the default storage engine …
-
django.forms.fields
- … text , * args , ** kwargs ) if self . required : self . choices = [] else : self . choices = [( "" , "---------" )] if self . match is not None : self . match_re = re . compile ( self . match ) if recursive : for root , dirs , files …
-
django.core.validators
- … search ( force_text ( value )))): raise ValidationError ( self . message , code = self . code ) def __eq__ ( self , other ): return ( isinstance ( other , RegexValidator ) and self . regex . pattern == other . regex . pattern and self . regex . flags == other . regex . flags and ( self …
-
django.middleware.common
- … full_path () referer = force_text ( request . META . get ( 'HTTP_REFERER' , '' ), errors = 'replace' ) if not self . is_ignorable_request ( request , path , domain , referer ): ua = force_text ( request . META . get ( ' …