search for: poolsiz

Displaying 6 results from an estimated 6 matches for "poolsiz".

Did you mean: poolsize
2007 Mar 29
3
thread pool
Hi, I am trying to limit the number of worker threads running at the same time. Adding ":poolsize: 2" to backgroundrb.yml or starting backgroundrb server like this script/backgroundrb start -- -s 2 does not seem to help. I can still create more than 2 worker threads from a rails app. I tried this on ubuntu dapper - ruby 1.8.4 - backgroundrb 0.2.1 as well as mac os...
2006 Jan 19
0
Connection pooling
...ut. http://bugs.digium.com/file_download.php?file_id=8809&type=bug Just so you know, this is a diff against 1.2.1 and it's been only tested with 1.2.1 (because that's what we are using in production). To enable pooling, you need to edit your res_odbc.conf file and add pooled => yes poolsize => 10 To the entries you want to be pooled This also adds an additional command "odbc showpool" that shows detailed information about the connection pools. We've been running with this patch on two machines and it seems to be working just fine.
2000 Jan 30
1
Slow writes from MS-DOS LanMan Client to Samba server
...k3] DRIVERNAME=ELPC575$ INTERRUPT = 0xB MAXTRANSMITS=40 [protman] drivername=PROTMAN$ PRIORITY=MS$NDISHLP [tcpip] NBSessions=4 ---- end of sniplet protocol.ini ---- ---- tcputils.ini ---- [tcpglobal] drivername=GLOBAL$ [sockets] drivername=SOCKETS$ bindings=TCPIP_XIF numsockets=4 numthreads=32 poolsize=3200 maxsendsize=1024 [telnet] drivername=TELNET$ bindings=TCPIP_XIF nsessions=0 max_out_sends=0 ---- on of tcputils.ini ---- well I guess that's it..... thanks for helping ... Stefan
2016 Mar 01
2
Add support for in-process profile merging in profile-runtime
Hi David, This is wonderful data and demonstrates the viability of this feature. I think this has alleviated the concerns regarding file locking. As far as the implementation of the feature, I think we will probably want the following incremental steps: a) implement the core merging logic and add to buffer API a primitive for merging two buffers b) implement the file system glue to extend this
2003 Feb 03
4
[Bug 40] system hangs, Availability problems, maybe conntrack bug, possible reason here.
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=40 laforge@netfilter.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From laforge@netfilter.org 2003-02-03 16:49 ------- We haven't seen this
2003 Aug 22
3
PAE removal patch for testing
...j diff -u -r /usr/src/sys.old/i386/i386/mem.c /usr/src/sys/i386/i386/mem.c --- /usr/src/sys.old/i386/i386/mem.c Thu Aug 21 18:35:33 2003 +++ /usr/src/sys/i386/i386/mem.c Fri Aug 22 02:10:41 2003 @@ -159,7 +159,7 @@ int flags; { register int o; - register u_int c; + register u_int c, v; u_int poolsize; register struct iovec *iov; int error = 0; @@ -178,8 +178,9 @@ /* minor device 0 is physical memory */ case 0: - pmap_kenter((vm_offset_t)ptvmmap, - uio->uio_offset & ~PAGE_MASK); + v = uio->uio_offset; + v &= ~PAGE_MASK; + pmap_kenter((vm_offset_t)ptvmmap,...