CatgirlIntelligenceAgency/code/common
Viktor a278fc6296
Increase search result relevance (#8)
* Increase accuracy of the position bits.
* Increase their width to 56.
* Use a rolling position scheme for bits 16-56 to increase the average accuracy.
* Result ranking overhaul
* Optimized queries
* BM25 in the index service's ranking
* Make gui less jank
* Javadocs for ranking parameters.
2023-04-07 20:18:08 +02:00
..
config Fix bug where WmsaHome wouldn't look in /var/lib/wmsa as a fallback 2023-03-25 10:20:52 +01:00
db Documentation for DB 2023-03-25 16:14:16 +01:00
model Increase search result relevance (#8) 2023-04-07 20:18:08 +02:00
process Yet more restructuring. Improved search result ranking. 2023-03-16 21:35:54 +01:00
renderer Move all code to a code directory. 2023-03-07 17:14:32 +01:00
service Documentation for DB 2023-03-25 16:14:16 +01:00
service-client The refactoring will continue until morale improves. 2023-03-12 10:04:48 +01:00
service-discovery Move all code to a code directory. 2023-03-07 17:14:32 +01:00
readme.md Update readme.md 2023-03-25 15:27:11 +01:00

Common

These are packages containing the basic building blocks for running a service as well as shared models.

  • db contains SQL code and some database-related utilities.
  • config contains some @Injectables.
  • renderer contains utility code for rendering website templates.
  • service is the shared base classes for main methods and web services.
  • service-client is the shared base class for RPC.
  • service-discovery contains tools that lets the services find each other.
  • process contains boiler plate for batch processes.