techhub.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A hub primarily for passionate technologists, but everyone is welcome

Administered by:

Server stats:

4.6K
active users

#objects

3 posts3 participants0 posts today

Is it because I’ve been watching documentaries about some of the artists from the Nouveau Réalisme movement lately that I’ve started appreciating eclectic collections of objects? I’m not sure… All I know is that I now find myself rummaging through my trash cans—and even other people's—to see what I can salvage, picking up little objects I find on the street…

#art#decoration#craft

Currently trying to tackle the #RAM consumption issue I see in #swad by introducing thread-local #pools (using simple linked lists) for frequently created and destroyed #objects like event-handler entries, timers, maybe also the connections served by a specific server ... instead of allocating a new one, the pool is asked for one, and instead of (fully) destroying one, it's returned to that pool.

It's a shot in the dark and will actually enforce memory for these is (almost) never free'd, but I hope it will avoid #heap #fragmentation. We'll see how it's going 🙈