Throttling is a mechanism to regulate the rate at which processing is performed
Questions tagged [throttling]
1092 questions
0
votes
1 answer
Network speed throttling
I am trying to build a browser using Python+pygtk+webkit. Now, I want to throttle the speed of
connection (i.e) time to load a web page or download speed..mainly http..
So, is there any protocol or webkit method i can use for the same. Below is my…

java_doctor_101
- 3,287
- 4
- 46
- 78
0
votes
2 answers
what is default throttle value for Excel 2010
I see from http://msdn.microsoft.com/en-us/library/aa140060(v=office.10).aspx
that data throttle value for Excel 2002 is 2 seconds. but I can't find the default value for Excel 2003, 2007 & 2010. I assume they are 2 seconds, too. But just want to…

toosensitive
- 2,335
- 7
- 46
- 88
-1
votes
2 answers
console.log the mouse coordinates every 2 seconds
I have the below code:
window.addEventListener('mousemove', ()=>{
myInterval = setTimeout(mouseMove, 2000);
});
const mouseMove = () => {
console.log('first console');
onMouseMove = (e) => console.log("mouse location:", e.x, e.y)
}
Only…

metsaKooder
- 3
- 1
-1
votes
1 answer
throttle data transfer using dd over ssh connection
I am using dd to transfer data over two machines, command which used is ,
dd bs=1M if=/dev/loop0 status=progress | sshpass -p mypassword ssh root@192.168.111.11 dd bs=1M of=/dev/loop0 iflag=fullblock conv=sparse
Aim is to throttle the network…

Akhil V Suku
- 870
- 2
- 13
- 34
-1
votes
2 answers
Speed up python requests download speed (by behaving appropriately around throttling)
How can I download a file fast using python?
I tried different modules like wget and they all take about the same time to execute.
In this example I will get a file from reddit
https://v.redd.it/rfxd2e2zhet81/DASH_1080.mp4?source=fallback
…

Johannes
- 6,490
- 10
- 59
- 108
-1
votes
2 answers
Trying to use setInterval to make a throttling function unsuccessfully
I am trying to return a function that only invokes a callback function 'func' once per every 'wait' milliseconds.
Additional calls to the callback 'func' within the 'wait' period should NOT be invoked or queued.
This is what I have so…

DaShaman
- 147
- 1
- 11
-1
votes
1 answer
Windows Service Reading from MSMQ through WCF...Throttling
I have a windows service that reads my message queue through WCF. I want the service to process not more than 50 messages from queue. I set the throttling configuration to 50 , but it does not seem to do anything. It just process one message after…

Vice
- 1
-1
votes
1 answer
My throttle function is not waiting the limit time
I'm learning throttling and I'm having an issue where my throttle method is not waiting the limit time to run.
const display = (msg) => {
console.log(msg). // I know this function does not do anything, but I'm trying to understand how I can call…

myTest532 myTest532
- 2,091
- 3
- 35
- 78
-1
votes
1 answer
Laravel 429 too many requests - other way to refresh time from database
I have application in Angular 11 and Laravel.
I need display time status every second in html in Angular. Now I have method:
this.uptimeService.getUptimeByUserForToday(userid, newDateNow).subscribe(res => {
if (res.status === 'Ok') {
…

Jonson
- 53
- 1
- 8
-1
votes
1 answer
Consume an API that have a rate limit
I have an API that limit 10 calls/second from an IP - Lets call this API-1
I have a webapp that consumes API-1. Lets call this WebApp-1
If I my Web App have more traffic and needs to make more calls per second than allowed, how do I design WebApp-1…
-1
votes
2 answers
Throttling app for testing native apps in iPad/iOS
Is there any app for throttling network speed in iOS/iPad? I have already tried an app called 'charles proxy' but it didn't work for me. This is to test native apps under poor connectivity. Can anyone help me with this?
-1
votes
1 answer
What is workload throttling?
Could somebody give a good explanation for newbie, what does following phrase means:
1) workload throttling within a single cluster and 2) workload
balance across multiple clusters.
This is from overview of advantages of one ETL-jobs tool, that…

Bilberryfm
- 507
- 2
- 11
- 28
-1
votes
3 answers
C#/WPF merging consecutive event calls
Win2D features this function Invalidate(), that when called will redraw an entire control, and on rapid successive calls they will merge into one update that encompasses any changes from previous calls. I am trying to recreate this in my own…

hatafark
- 13
- 3
-1
votes
2 answers
Apache Camel : using throttle : how to change the value of timePeriodMillis using a config file?
i use the throttle in apache camel blueprint : throttle timePeriodMillis="1000"
with constant = 4
i want to put the value of timePeriodMillis dynamically using placeholder.Is this possible?

Maha makni
- 21
- 1
- 7
-1
votes
2 answers
preventing abuse of API service usage
I am planning on using Laravel in my next web project, for the backend. Using the Laravel's built-in functionality I will build an API service. So my main concern now - is about the security of such service. Laravel's API throttling middleware seems…

Alex
- 4,607
- 9
- 61
- 99