Coder Social home page Coder Social logo

lucilla's Issues

Switch to Positional Postings List in the Index

Lucilla's FTS index stores a map of documents and frequencies for each term, which can also be used to calculate the document frequency.

Modify the index to also store the starting position/offset for each term in the documents.

Add ability to limit search query to specific document properties

Allow users to search the index for specific properties of a document only.

For example, the ability to search only the titles of indexed books, even if other properties are indexed too:

data class Book(
  @Id val id: Int,
  val title: String,
  val description: String,
)

val index = useFts(getBooks())

// Only return results that contain "recursion" in the book title
val results = index.search("recursion", Book::title)

Divide the FTS index per document field

Lucilla treats every document as a blob of text, which does not work well for field-specific or field boosts. Storing field related information in the document would make it easier to implement such functionality.

Add support for auto-complete suggestions

Add ability to fetch auto completion suggestions for a search query.

A simple autocomplete suggestions provider can be built using prefix search. For a search query, return matching words in the index that contain the query as a prefix.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.