Giter Site home page Giter Site logo

search-engine's Introduction

Search Engine

How to run the application:

  • clone the repository
  • go to the project directory
  • run maven command: mvn clean install spring-boot:run -pl search-mvc-app
  • open application in browser

Please note that you should have installed Mavenโ—

About the project:

It is a multi-module maven project that consists of 4 modules:

  • document-service - contains a document related business logic
  • document-persistence - an in-memory implementation of a document persistence
  • full-text-searcg-engine - an in-memory implementation of an index-based full text search engine
  • seach-mvc-app - a Spring Boot application that wires up all modules and provides Thymeleaf based UI

Full text search algorithm:

A search is based on indexed data. Indexes are computed when new document is added and are sored in a HashSet. When a search request comes, an indexes of a search query are computed and then compared to the indexes of existing documents. If the document indexes contains all indexes of a search query than document key is returned.

Indexes are computed using the following simplified algorithm:

  1. Split the document into words by removing all punctuation (like , and :)
  2. Convert all words into lowercase
  3. Remove all stop words (like a, and the)

search-engine's People

Contributors

tboychuk avatar

Stargazers

Orest Mahdziak avatar

Watchers

James Cloos avatar  avatar

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.