Skip to content

Commit

Permalink
allow more docids to be downloaded/served in search results.
Browse files Browse the repository at this point in the history
  • Loading branch information
gigablast committed Mar 22, 2016
1 parent 04a8433 commit 3c743a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion UdpSlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@
// raised from 80MB to 180MB since we could be sending back a Msg95Reply
// which is a list of QueryChanges. 3/29/13.
//#define MAX_DGRAMS (((180*1024*1024) / DGRAM_SIZE_LB) + 1)
#define MAX_DGRAMS (((80*1024*1024) / DGRAM_SIZE) + 1)
//#define MAX_DGRAMS (((80*1024*1024) / DGRAM_SIZE) + 1)
// raise from 80MB to 280MB for choi EMSGTOOBIG error
#define MAX_DGRAMS (((280*1024*1024) / DGRAM_SIZE) + 1)
//#endif

#define MAX_ABSDOCLEN ((MAX_DGRAMS * DGRAM_SIZE)-50000)
Expand Down

0 comments on commit 3c743a7

Please sign in to comment.