Skip to main content

Firefox

Some quick hacksโ€‹

userContent & userChromeโ€‹

Make Browser Tab Bar More Compactโ€‹

  • about:config
  • browser.uidensity: 0 is the default, 1 is compact, 2 is touch (sparser)

Improving Firefox responsiveness on macOS - Mozilla Hacks - the Web developer blogโ€‹

  • This improvement was achieved via a slight change in how locking is implemented within Firefox's memory allocator.
  • Putting a thread to sleep has significant performance implications and, thus, is not always the best option.
  • it might be advantageous to let a thread spin briefly if the lock it's trying to acquire is only held briefly.
  • It can result in higher performance and lower power consumption, as spinning costs less than sleeping.
  • As you might have guessed by now, OSSpinLock offered excellent performance on a lightly loaded system but behaved poorly as the load ramped up.
  • This problem with OSSpinLock was known within Apple hence its deprecation
  • Enter osunfairlock, Apple's official replacement for OSSpinLock. If you still use OSSpinLock, you'll get explicit warnings to use it instead
  • So I used it, but the results were terrible. Performance in some of our automated tests degraded by as much as 30%.
  • As it turns out, osunfairlock doesn't spin on contention; it makes the calling thread sleep right away when it finds a contended lock
  • The function is osunfairlockwithoptions() and the options I used are OSUNFAIRLOCKDATASYNCHRONIZATION and OSUNFAIRLOCKADAPTIVESPIN
  • The latter asks the kernel to use kernel-space adaptive spinning, and the former prevents it from spawning additional threads in the thread pools used by Apple's libraries
  • Did they work? Yes! Performance on lightly loaded systems was about the same as OSSpinLock, but on loaded ones, they provided massively better responsiveness
  • I initially fell back to OSSpinLock as an intermediate solution on older systems. Later I managed to get rid of it for good by relying on osunfairlock plus manual spinning in user space

Links to This Note

WebExtension

... such as Chrome|Google Chrome, Mozilla Firefox, and Microsoft Edge, support the ...

Super App is a Universal Chat App

... main target of Signal and Firefox are people who are flexible ...

Snowpack์œผ๋กœ WASM ์‹œ์ž‘ํ•˜๊ธฐ

- ๋‹ค๋งŒ Safari์™€ Firefox์—์„œ๋Š” ์ž‘๋™๋˜์ง€ ์•Š์•˜๋‹ค. "SharedArrayBuffer is not ...

Safari is the new Internet Explorer

... six weeks (soon every four), Firefox releases every four weeks, and ...

Porting a Chrome Extension to Firefox Add-on

While Chrome and Firefox are two very different [[Web ...

One and Only WebExtension

- A Safari and Firefox extension that disguises itself as ...

Love Firefox

i love Firefox

Letter to Mr. Gustav Ekerot on 2023-02-24

... tabExtend. I recently switched to Firefox and noticed the WebExtension|extension is ...

DeepL vs. GPT 3.5 vs. GPT 4 ๋ฒค์น˜๋งˆํฌ

... fixes 5-year-old Defender bug, reducing Firefox-related CPU use by 75%  ...

Bing Chat for All Browsers Widespread Unavailability Incident (April 23่ช ้‰‰)

... While some reported that the Chrome/Firefox version did not work and ...

Apple Newsroom ์„œ์ฒด ๋”ฐ๋ผํ•˜๊ธฐ

... ์žˆ์–ด๋„ ์‚ฐ๋Œ๊ณ ๋”• ๋„ค์˜ค๋ฅผ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๋ฐ˜๋ฉด Firefox ๊ณ„์—ด์€ ๊ทธ๋Ÿฌ์ง€ ๋ชปํ•œ๋‹ค. ๋•Œ๋ฌธ์— Firefox์—์„œ ...

2023-03-05

- Firefox

2022-10-10

... - the Web developer blog Firefox