Questions tagged [batching]
193 questions
2
votes
2 answers
What is the difference between nhibernate and entity framework in batching?
I want to select one of the above orm.
What is the difference between nhibernate and entity framework in batching?

masoud ramezani
- 22,228
- 29
- 98
- 151
2
votes
0 answers
Batching requests in ApolloGraphql, if one fails do they all?
const GET_QUESTION = gql `
query getQuestion($id:String!){
question(id:$id) {
id
text
title
}
isEditMode @client
}
`
I am running this above query where isEditMode is from Apollo Link State and in this situtation the…

Eli
- 827
- 1
- 7
- 21
2
votes
1 answer
Python Requests - Batch API calls
I am working on an API to push records from a database to endpoint.
I have managed to write a piece of code which grabs the records, it's parsing them and finally pushing to API and works just fine.
It manages to push around 400 req/min and I was…

madlicksxxx
- 57
- 1
- 8
2
votes
0 answers
Resolve batched query in single api call on apollo graphql server
I am currently using batching of similar calls on apollo graphql client.
So it sends single call to apollo-server if same graphql query is fired but with different parameters.
But on graphql server side I want to optimize such that there also a…

WitVault
- 23,445
- 19
- 103
- 133
2
votes
3 answers
1D -> 2D Array W/Normal Curve Sub-Array Lengths
I am trying to break a 1D array into a 2D array where the sub-arrays are of varying lengths. This variance should follow the gaussian curve [or a mound shape]. So, say the 2D array variable we make is named gaussianCurve. The array within…

brightmatter
- 162
- 1
- 10
2
votes
0 answers
Unity 5.6.0 bad performance on a simple scene
I just created a new project and built an opening scene with a few sprites in it, Same scene ran in unity 4.7 with 60FPS but i cant get it in unity 5.6. I have only one simple script (fps counter), one simple animation(1 leaf), 15 sprites in a scene…

user3673359
- 21
- 1
2
votes
0 answers
Android - How I receive sensors data in batching mode?
KitKat introduced sensor batching, but i cant reading data from sensors in batching mode.
My code:
public class MainActivity extends AppCompatActivity implements SensorEventListener{
private SensorManager senSensorManager;
private Sensor…

phnmnn
- 12,813
- 11
- 47
- 64
2
votes
1 answer
How does Static Batching work in Unity3D
I am working on a 360 video player app for VR Platform and looking forward to optimise it for mobile platforms. At this time I have a question regarding static batching.
Lets say I have a sphere which would never move even if the world ends. But a…

Umair M
- 10,298
- 6
- 42
- 74
2
votes
1 answer
While splitting txt file through batch script Exclamations are ommitting
Iam new to batch script and here I tried to split my text file into chunks for each 1 million rows.
Chunk files are generated as I expected, but inside the output file content Iam missing the Exclamations ( ! ) and even it skipping the immediate…

CIPHER
- 237
- 1
- 4
- 19
2
votes
1 answer
How to use storm Trident for batching tuples?
I was using storm previously and I need to more batching capabilities so I searched for batching in storm.
And I found out Trident which do micro-batching in real-time.
But somehow, I cannot figure out how Trident handle micro-batching (flow, batch…

yelo
- 371
- 1
- 5
- 17
2
votes
1 answer
Generic QoS Message batching and compression in Java
We have a custom messaging system written in Java, and I want to implement a basic batching/compression feature that basically under heavy load it will aggregate a bunch of push responses into a single push response.
Essentially:
if we detect 3…

Dougnukem
- 14,709
- 24
- 89
- 130
2
votes
0 answers
Unity3D: Lazy Dynamic Batching & Why Instanced materials keep instanced for ever
I need to reduce batches count. Unity's brilliant feature "Dynamic Batching" is killing me :D
My game contains a lot of smaller objects that keep changing when players interact.
Dynamic batching does not work good even though I assign one among…

Distraction Arrestor
- 301
- 3
- 12
2
votes
1 answer
OracleDataClientBatchingBatcherFactory Throws Null Reference Exception
We're using NHibernate version 4.0.4.4000 and configuring it with FluentNHibernate version 2.0.3.0.
I'm trying to setup batching on an Oracle connection with the Oracle Data Client Batching Batcher Factory (OracleDataClientBatchingBatcherFactory)…

dacke.geo
- 233
- 2
- 13
2
votes
1 answer
StackExchange.Redis: Batch access for multiple hashes
So I need to access in bulk many different hashes (in StackExchange.Redis, I have different RedisKey's).
What is the best (fastest) way to do it?
For example, for these two possible implementations, is either correct? Which one works…

Santiago Cerón Uribe
- 215
- 3
- 6
2
votes
1 answer
How to configure custom MySQL NHibernate Batcher?
NHibernate with MySQL Dialect does not support Batching out of the box. I have found custom MySQL Batcher for NHibernate on nuget. Also, following is the github link:
https://github.com/Andorbal/NHibernate.MySQLBatcher
But I do not know how to…

CodingIsFun
- 98
- 1
- 5