Index: db-api.txt
===================================================================
--- db-api.txt	(revision 1812)
+++ db-api.txt	(working copy)
@@ -190,6 +190,11 @@
     day          For date/datetime fields, exact day match.
     isnull       True/False; does is IF NULL/IF NOT NULL lookup:
                  ``polls.get_list(expire_date__isnull=True)``.
+    match        Performs a case-insensitive boolean full-text search. Like 
+    			 "contains," but significantly faster thanks to full-text 
+    			 indexing. (Note: MySQL only. Requires direct manipulation of 
+    			 the database to add the full-text index at present. Django 
+    			 development version only.)
     ===========  ==============================================================
 
 Multiple lookups are allowed, of course, and are translated as "AND"s::
