1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-16 18:01:37 +00:00
miniflux-v2/internal/storage
Julien Voisin 8bca777a6d
refactor(model): remove some indirection
For small fixed-size structures, it's better to use a slice of values, instead
of a slice of pointers to values: they're stored contiguously and thus can be
iterated on quickly by the CPU, and it does remove an indirection per object
every time the GC kicks in.
2025-08-12 19:46:14 -07:00
..
api_key.go refactor(model): remove some indirection 2025-08-12 19:46:14 -07:00
batch.go refactor: remove some fmt.Sprintf calls 2025-08-11 19:27:34 -07:00
category.go refactor(model): remove some indirection 2025-08-12 19:46:14 -07:00
certificate_cache.go Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
enclosure.go feat(storage): reduce the number of SQL queries when fetching entry enclosures 2025-03-23 14:13:33 -07:00
entry.go perf(storage): pair all SELECT true with LIMIT 1 2025-08-02 16:13:55 -07:00
entry_pagination_builder.go refactor: remove some fmt.Sprintf calls 2025-08-11 19:27:34 -07:00
entry_query_builder.go refactor: remove some fmt.Sprintf calls 2025-08-11 19:27:34 -07:00
entry_test.go fix(storage): ensure strings are truncated to fit tsvector size limit and remain valid UTF-8 2025-07-20 13:42:58 -07:00
feed.go refactor(storage): simplify feed.go by using min(), inline errors, and use idiomatic conditions 2025-08-05 19:25:50 -07:00
feed_query_builder.go refactor: remove some fmt.Sprintf calls 2025-08-11 19:27:34 -07:00
icon.go perf(storage): pair all SELECT true with LIMIT 1 2025-08-02 16:13:55 -07:00
integration.go perf(storage): pair all SELECT true with LIMIT 1 2025-08-02 16:13:55 -07:00
session.go refactor: replace interface{} with any 2025-08-05 20:26:07 -07:00
storage.go feat: show size of DB on the about page 2025-03-05 15:49:32 -08:00
timezone.go fix: replace timezone function call with view 2024-12-03 01:44:48 -08:00
user.go refactor: replace interface{} with any 2025-08-05 20:26:07 -07:00
user_session.go refactor(model): remove some indirection 2025-08-12 19:46:14 -07:00
webauthn.go Add WebAuthn / Passkey integration 2023-11-05 18:57:35 +01:00