* Major optimization for large Search/Browse responses. Using strcat gets very slow when the data size gets too big. Switching to memcpy gives us a huge performance improvement with very large responses.
This commit is contained in:
@ -21,7 +21,8 @@ struct Response
|
||||
int returned;
|
||||
int requested;
|
||||
int total;
|
||||
char *filter;
|
||||
int size;
|
||||
u_int32_t filter;
|
||||
enum clientType client;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user