this post was submitted on 19 Dec 2025
40 points (95.5% liked)

Selfhosted

61409 readers
427 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.

  8. AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

Hello all!

Thanks for all the interest and support you have shown for Journiv so far. If you don't already know about Journiv:

Journiv is a self-hosted private journaling application that puts you in complete control of your personal reflections. Built with privacy and simplicity at its core, Journiv offers comprehensive journaling capabilities including mood tracking, prompt-based journaling, media uploads, analytics, and advanced search. All while keeping your data on your own infrastructure.

CalDAV and VJOURNAL are pretty popular in self hosted world and it has been asked few times why Journiv does not use VJOURNAL. So I wrote a blogpost about it to share my research and learning from initial days of Journiv.

If you find anything technically incorrect or have any feedback/suggestion around this I will love to hear it! I think there are lot of experts/users of CalDAV and VJOURNAL here from whom I can learn more.

Thank you.

you are viewing a single comment's thread
view the rest of the comments
[–] rockstar1215@lemmy.world 2 points 7 months ago

Hello, Sorry for the late reply. I do not use lemmy that often and only saw this now when I came here to post about new release. You're right to call that out. I made an oversimplified claim. Let me clarify, XML vs JSON performance is nuanced:

  1. Parsing speed: JSON is generally faster to parse than XML because:
  • Simpler syntax (no opening/closing tags, no attributes vs elements decisions)
  • Less data structure overhead
  • More direct mapping to native data structures in most languages
  1. Payload size: XML is typically more verbose due to:
  • Opening and closing tags
  • Namespace declarations
  • Attribute syntax
  • This means larger network transfers

However:

  • Well-optimized XML parsers can be very fast
  • The difference matters more for high-volume APIs than occasional journal syncs
  • For large text content (like journal entries), the actual content dwarfs the format overhead