• darkawower@alien.topOPB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    I am currently working on my own note synchronization server (I need it because I plan to try to integrate CRDT in the future).

    I would also like to mention that currently notes are not encrypted on the client side. However, I also plan to implement this in the future.

    I do not plan to integrate third-party synchronization mechanisms, but I will be working on an API that allows for custom extensions. With this API, developers will be able to create their own note synchronization mechanisms

    • mlk@alien.topB
      link
      fedilink
      English
      arrow-up
      1
      ·
      10 months ago

      IMHO the best way would be using git, which is literally made to resolve this kind of conflicts and it’s very battle tested. I’ve always had issues syncing notes until I switched to git.

      • darkawower@alien.topOPB
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 months ago

        As far as I know, git can’t be used for real-time synchronization and simultaneous collaborative editing. But I’ll give it some thought

        • mlk@alien.topB
          link
          fedilink
          English
          arrow-up
          1
          ·
          10 months ago

          is simultaneous collaborative editing a real need though? I’d say org notes are usually edited by a single person, often from multiple devices, unless you are trying to create a Google Docs competitor, I don’t think that’s a feature that is actually needed.

          git also has the advantage of complete history and easy rollbacks.

          I’ve given up using Orgzly because the syncing is atrocious, it has restored deleted notes multiple times. I’m now using Organice with gitlab backend and it works very well.

          • darkawower@alien.topOPB
            link
            fedilink
            English
            arrow-up
            1
            ·
            10 months ago

            I need to think about it. The server functionality is also needed to share notes, although it may be possible to combine it with git storage as well