Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
58 views

I have one of these tablets, just over 2.5 years old now. It came with Android 12 and was fine, then an auto-update forced it to 13, and it broke the on screen keyboard. What happens in practice is ...
nmw01223's user avatar
  • 1,745
2 votes
0 answers
152 views

I want to play a short .wav sound every second and update a counter on the screen at the same time. I'm using the flutter_soloud package and based my code on their metronome example from GitHub. ...
Pavel Vlasák's user avatar
1 vote
1 answer
123 views

I am caching some global variables in memory across multiple requests in a cloudflare worker. I want to flush those variables into a persistent storage like KV cache or redis just before the worker is ...
Om Srivastava's user avatar
-1 votes
1 answer
153 views

I have a next.js website that under the load 80 requests per seconds (for one pod) shows huge latency 20-30 seconds to handle a simple request like API call. I checked event loop lag and under the ...
Galina's user avatar
  • 556
0 votes
1 answer
83 views

I'm trying to use KDB as a low-latency pub/sub message broker that persists all messages in a queryable format. However, I'm noticing the latency from when the tickerplant receives a message (i.e. ...
mchen's user avatar
  • 10.3k
1 vote
1 answer
105 views

We have a service with this architecture: HTTPS requests come into an A10 load balancer that does L4 load balancing Behind it are 2 backend servers with Apache running that terminate the TLS ...
moritz's user avatar
  • 12.7k
1 vote
1 answer
55 views

from scapy.all import traceroute def perform_traceroute(target): result, _ = traceroute(target, maxttl=50, verbose=True) print(result) for hop in result: query_packet = hop[0]...
Wayne McNicol's user avatar
0 votes
1 answer
231 views

Anyone else having a problem to let durable functions runtime get connection to Azure Storage Account? When you are running Local environment on your VS Code. For me it is stuck on that and after many ...
Voi Se's user avatar
  • 1
1 vote
0 answers
107 views

I’m working with an STM32MP157D-DK1, trying to use the hwlat tracer for the board's arm Cortex-A7 CPU, to check for typical hardware latency. The following attempt was made to use the hwlat tracer on ...
user656857's user avatar
1 vote
0 answers
114 views

When using the web midi api for receiving midi messages from a midi instrument (via usb), how can we measure the latency time, that is: the time it took from playing a note with the instrument to ...
vuelicious's user avatar
1 vote
0 answers
110 views

I am experiencing unexpected latency issues with Redis in my Laravel application. Here are the details: Setup: Redis Client: I am using the phpredis extension. Environment: Redis is running on Windows ...
جهاد الادهمي's user avatar
2 votes
1 answer
570 views

I use an audioContext = new AudioContext() of the Web Audio API for scheduling beep sounds for every beat (relative to a user-defined bpm and time signature) - let's call this stack of beeps "...
vuelicious's user avatar
1 vote
1 answer
2k views

I need to forward an rtsp stream from an axis camera through an udp port. I have this pipeline on the send side: gst-launch-1.0 rtspsrc location='rtsp://XXXX:[email protected]/axis-media/media.amp' ...
Marco Carandente's user avatar
1 vote
0 answers
137 views

I have a socket server in nodejs, a unity client and I try calculate the latency between them like below Server: socket.on("readable", () => { let data: Buffer = socket.read(); if(...
TIng's user avatar
  • 11
0 votes
1 answer
193 views

We are using the google spanner jdbc driver(google-cloud-spanner-jdbc) to enable connectivity from our application to cloud spanner. This was used instead of the google client libraries to reuse the ...
Raj Kumar's user avatar
1 vote
0 answers
232 views

We have a .NET process where the process is subscribing to the Topic. One of the common observations is that the Time Spent in Queue is large. Azure Service Bus is running with 2 Messaging Units. The ...
GeekzSG's user avatar
  • 973
1 vote
0 answers
104 views

I have implemented a circular queue using an array in C++. The queue uses two atomic variables, front and rear, to manage enqueue and dequeue operations. When an element is enqueued, rear is ...
Revanth Thota's user avatar
0 votes
1 answer
67 views

I have some code where interrupt jitter is deal killer. There are just one interrupt source and that need to be as precise as possible. For ATMEGA the max interrupt response is the length of current ...
eSlavko's user avatar
  • 460
0 votes
0 answers
139 views

I am trying to do some real-time image processing by openCV with videos from web-camera and thermal-camera. I am using multi-threadings methods: one threading for one camera. The simplified code is ...
user24312540's user avatar
0 votes
1 answer
366 views

I have several globally distributed tagging server deployments that are deployed in GCP Cloud Run. The Cloud Run deployments are reachable through serverless network endpoint groups. The traffic is ...
CPI's user avatar
  • 71
1 vote
0 answers
174 views

I have a application running with 2 cores on each port. If I use lid type as RX_TYPE on both the ports and run a application it works fine by transmitting and receiving udp packets. But if I use lid ...
Das's user avatar
  • 11
-1 votes
1 answer
51 views

Suppose you have a web application where users need to log in to access personalized data stored in a MySQL database. The authentication process involves Firebase, and every time a user makes a ...
Seb St Johnston's user avatar
0 votes
0 answers
130 views

I want to track how long an async process takes. My general approach for synchronous processes is to record the current time, run the process, and finally calculate and record the difference. I use an ...
kane's user avatar
  • 6,097
0 votes
0 answers
686 views

I am making a small time test of the openai API, from my local internet connection and laptop, but I get times that are much larger than expected. With the following code: import openai import time ...
Thomas's user avatar
  • 331
0 votes
1 answer
241 views

I am using Google Cloud Spanner with my Application which is latency sensitive. I see sustained high median latencies for all/most of my requests. My CPU utilization is less than 40%? How do I fix it?
Naren Mehra's user avatar

1
2 3 4 5
25