I have a Golang server (pet project) and each second I add 2879 bytes of data in database. At the moment I'm about a 1GB of data. I want to cleanup the database to avoid a moment when I'm run out of ...
Problem StatementI'm implementing a complex business workflow using Hexagonal Architecture (Ports and Adapters), but I'm struggling with how to properly orchestrate.Business Workflow Requirements...
I am creating an E-Commerce app. It has Category and Product classes. Both have multilingual descriptions, so, tables with title, description, meta-*, etc. and unique key (id, language_id).To add ...
I have been experiencing slow mongo queries suddenly. The execution times varies very randomly. Initially I was suspecting this expensive aggregation operation :-{ "appName": "XXXXXX&...
I'm building a Node.js backend using plain SQL (no ORM, just mysql2 wrapped in a small helper).However, as my project grows, my route handlers start looking messy — full of raw SQL strings embedded ...
So, Expo provides the component <SQLiteProvider> and a hook useSQLiteContext().Now I have an App with Redux slices, and async thunks using that DB for CRUD operations.My main question is: how ...
I’m working on a project that will consume the API of a payment acquirer — for example, E-Rede, Cielo, or CGNet — depending on the environment or client configuration.These acquirer APIs typically ...
I am using global redis datastore, with two clusters Region-A and Region-B.Each regional cluster has three redis nodes one primary and two read replicas.I have my service deployed in two regions as ...
I am very new to development with ORMs.In my project, where I use Entity Framework Core, I want to create a class that would encapsulate whole interaction with database, i.e. through which I would ...
I am trying to modify the ecall behavior in QEMU usermode simulation, so that i can intercept system calls.The way i intend to do it is by reading states from the CPURISCVState with tcg_gen_ld_tl -- ...
I’m setting up a Flutter monorepo using Melos. Inside the repo:A Flutter app (/apps/my_app)A package that is generated by openapi-generator (/packages/my_api_client)The problem:My app depends ...
I want to make a VSCode Extension that matchs regex pattern that I define with project's git-logs. I want the best performance, so I am thinking of using Golang as the backend instead of Typescript.I ...
I have written a C++ Unit Test which has a design problem.The test is relatively straightforward. I am testing some kind of "iobuffer" object. There is a function recv which is used to copy ...
I have been told that when it comes to GPU APIs like Vulkan and DirectX and the host is for example little-endian and the GPU is big-endian that you can read for example a 32-bit integer and the ...