Storage: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
Line 4: Line 4:


=== Full Text Indexing ===
=== Full Text Indexing ===
* built-in tokenization of Unicode text
* separation of indexing from storage, so code can use the full text indexing module to index visited web pages without having to store the contents of the pages themselves.
* tokenization of marked up text (HTML, PDF, etc.)
* built-in tokenization of Unicode text (i.e. without having to either compile in a large separate library or write custom functions);
* separation of indexing from storage, so code can use the full text indexing module to index visited web pages without having to store the contents of the pages themselves
* tokenization of marked up text (HTML, PDF, etc.).

Revision as of 23:35, 25 February 2008

Storage is a SQLite database API. API documentation is available in the Mozilla Developer Center.

Proposed Future Development Priorities

Full Text Indexing

  • separation of indexing from storage, so code can use the full text indexing module to index visited web pages without having to store the contents of the pages themselves.
  • built-in tokenization of Unicode text (i.e. without having to either compile in a large separate library or write custom functions);
  • tokenization of marked up text (HTML, PDF, etc.).