this post was submitted on 13 Jun 2023
52 points (100.0% liked)

Announcements

765 readers
1 users here now

Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.

You can also find major news on join-lemmy.org

founded 5 years ago
MODERATORS
 

Its been a hectic week everyone, so I apologize that I haven't been as responsive as usual. We realized that we could either spend all our day answering questions, or coding to make lemmy better, so we're prioritizing the latter.

Reddit caught us right in the middle of one of our larger performance improvements, so I apologize for the instability of instances like this one. But I'm confident that lemmy will improve, especially due to all the new contributors helping out with performance, security fixes, and stability.

Please use our the issue trackers for the various lemmy projects to report issues, otherwise they will likely get lost.

Call for testers

  • You can help us test patch releases like this one at https://enterprise.lemmy.ml
  • We're readying the 0.18.0 release soon, you can help us test at https://voyager.lemmy.ml , and https://ds9.lemmy.ml
    • App devs should use voyager.lemmy.ml to test and prepare for 0.18.0, which should come in the next few weeks. The API changes and new types can be seen here.
    • 0.18.0 should give servers a big performance boost by removing websockets and switching entirely to HTTP. It also will add a lot of features like 2fa / TOTP.
top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 5 points 1 year ago

Thanks to the devs for all their hard work.

[–] [email protected] 4 points 1 year ago (1 children)

I don't know much about protocols. But what is the advantage of switching from websocket to http? Isn't web socket more useful for realtime data?

[–] [email protected] 4 points 1 year ago

They're heavy on the server, and I think the old design kept one per tab, so a single user could be responsible for dozens of websockets.

Plus, it's not like we need to get our updates immediately, even though it is cool. Perhaps further down the line the code could support both and switch based on server load.

[–] [email protected] 3 points 1 year ago

This is the week of greatest change - so enjoy the rush!

  • 0.17.4 is running great,
  • and the community is handling people’s questions well,

so you made the right choice.

[I will start testing 0.18 now.]

[–] [email protected] 2 points 1 year ago

By "switching entirely to HTTP", do you mean Server-Sent Events, or do you mean polling? I havent tried 0.18.0 yet, but in general polling can end up using far more resources unless you're doing something clever like passing the last update timestamp to the server and only querying the DB for new content since that timestamp (and timestamps are indexed in the DB).

[–] ulu_mulu 2 points 1 year ago

Thank you for your hard work!

[–] [email protected] 2 points 1 year ago

Thanks for the announcement. For those of us hoping to upgrade to 0.18.0 quickly once it's available, is this community the place to watch for a timely announcement of that, or should we be watching on GitHub or elsewhere?