CatgirlIntelligenceAgency/code/readme.md

58 lines
2.2 KiB
Markdown
Raw Normal View History

2023-03-07 17:32:16 +01:00
# Code
This is a pretty large and diverse project with many moving parts.
2023-03-21 17:26:59 +01:00
2023-03-07 17:32:16 +01:00
You'll find a short description in each module of what it does and how it relates to other modules.
2023-03-21 17:26:59 +01:00
The modules each have names like "library" or "process" or "feature". These have specific meanings.
See [doc/module-taxonomy.md](../doc/module-taxonomy.md).
2023-03-07 17:32:16 +01:00
## Overview
2023-03-21 17:11:28 +01:00
A map of the most important components and how they relate can be found below.
![image](../doc/diagram/conceptual-overview.svg)
2023-03-21 17:11:28 +01:00
2023-03-07 17:32:16 +01:00
### Services
* [core services](services-core/) "macroservices", stateful, memory hungry doing heavy lifting.
* * [control-service](services-core/control-service)
2023-03-07 17:32:16 +01:00
* * [search](services-core/search-service)
* * [index](services-core/index-service)
* * [assistant](services-core/assistant-service)
* [satellite services](services-satellite/) "microservices", stateless providing additional functionality.
2023-03-07 17:32:16 +01:00
* * [api](services-satellite/api-service) - public API
* * [dating](services-satellite/dating-service) - [https://explore.marginalia.nu/](https://explore.marginalia.nu/)
* * [explorer](services-satellite/explorer-service) - [https://explore2.marginalia.nu/](https://explore2.marginalia.nu/)
* an [internal API](api/)
### Processes
Processes are batch jobs that deal with data retrieval, processing and loading.
* [processes](processes/)
* * [crawling-process](processes/crawling-process)
* * [converting-process](processes/converting-process)
* * [loading-process](processes/loading-process)
#### Tools
* * [term-frequency-extractor](tools/term-frequency-extractor)
### Features
Features are relatively stand-alone components that serve some part of the domain. They aren't domain-independent,
but isolated.
* [features-search](features-search)
* [features-crawl](features-crawl)
* [features-convert](features-convert)
* [features-index](features-index)
2023-03-07 17:32:16 +01:00
### Libraries and primitives
Libraries are stand-alone code that is independent of the domain logic.
2023-03-07 17:32:16 +01:00
* [common](common/) elements for creating a service, a client etc.
* [libraries](libraries/) containing non-search specific code.
* * [array](libraries/array/) - large memory mapped area library
* * [btree](libraries/btree/) - static btree library