inquestitobot

command module
v0.0.0-...-8180f19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2021 License: Apache-2.0 Imports: 17 Imported by: 0

README

Inquestitobot

A component for search engines to create an inverted index. All data is stored in an sqlite3 database (inquestitobot.db) using the defined structure below.

How to Use

go build && ./inquestitobot

or

./init

Stucture

Inquestitobot creates a Document which is a representation for a resource (typically a webpage).

type Document struct {
	ID string
	Title string
	URL string
	Description string
	Checksum string
}

The ID variable is a checksum of the URL, Title is the title of the resource, URL is the location of the resource, Description is a short description of the resource, and Checksum is a checksum of the entire Document.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL