this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

optimise json

+11 -20
+3 -5
ARCH.md
··· 408 408 "links": { 409 409 "https://example.com/post/123": { 410 410 "referencing_entries": ["https://blog.user.com/entry/456"], 411 - "is_tracked_post": true, 412 411 "target_username": "user2" 413 412 }, 414 413 "https://external-site.com/article": { 415 - "referencing_entries": ["https://blog.user.com/entry/789"], 416 - "is_tracked_post": false 414 + "referencing_entries": ["https://blog.user.com/entry/789"] 417 415 } 418 416 }, 419 417 "reverse_mapping": { ··· 438 436 ``` 439 437 440 438 This unified structure eliminates duplication by: 441 - - Storing each URL only once with metadata flags 439 + - Storing each URL only once with minimal metadata 442 440 - Including all link data, reference data, and mappings in one file 443 - - Using `is_tracked_post` to identify internal vs external links 441 + - Using presence of `target_username` to identify tracked vs external links 444 442 - Providing bidirectional mappings for efficient queries 445 443 446 444 ### Unified Structure Benefits