nodebb-plugin-ezoic-infinite 1.8.8 → 1.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/client.js +2 -2
package/package.json
CHANGED
package/public/client.js
CHANGED
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
const MIN_PRUNE_AGE_MS = 8_000; // délai de grâce avant pruning (stabilisation DOM)
|
|
82
82
|
const MAX_INSERTS_RUN = 10; // plus réactif si NodeBB injecte en rafale
|
|
83
83
|
const MAX_INFLIGHT = 2; // ids max simultanés en vol (garde-fou)
|
|
84
|
-
const MAX_SHOW_BATCH =
|
|
84
|
+
const MAX_SHOW_BATCH = 3; // ids max par appel showAds(...ids)
|
|
85
85
|
const SHOW_THROTTLE_MS = 500; // anti-spam showAds() par id (plus réactif)
|
|
86
86
|
const SHOW_RELEASE_MS = 300; // relâche inflight après showAds() batché
|
|
87
87
|
const SHOW_FAILSAFE_MS = 7000; // relâche forcée si stack pub lente
|
|
88
|
-
const BATCH_FLUSH_MS =
|
|
88
|
+
const BATCH_FLUSH_MS = 40; // micro-buffer pour regrouper les ids proches
|
|
89
89
|
const MAX_DESTROY_BATCH = 4; // ids max par destroyPlaceholders(...ids)
|
|
90
90
|
const DESTROY_FLUSH_MS = 30; // micro-buffer destroy pour lisser les rafales
|
|
91
91
|
const BURST_COOLDOWN_MS = 100; // délai min entre deux déclenchements de burst
|