mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 21:29:00 +00:00
![]() Roll back to JDK 21 for now, and make Java version configurable in the root build.gradle The project has run into no less than three distinct show-stopping bugs in JDK22, across multiple vendors, and gradle still doesn't fully support it, meaning you need multiple JDK versions installed. |
||
---|---|---|
.. | ||
java/nu/marginalia/feedlot | ||
build.gradle | ||
readme.md |
Client for FeedlotTheFeedBot, the RSS/Atom feed fetcher and cache for Marginalia Search.
This service is external to the Marginalia Search codebase, as it is not a core part of the search engine and has other utilities.
Example
import java.time.Duration;
var client = new FeedlotClient("localhost", 8080,
gson,
Duration.ofMillis(100), // connect timeout
Duration.ofMillis(100)); // request timeout
CompleteableFuture<FeedItems> items = client.getFeedItems("www.marginalia.nu");