Re: Save brigade and buckets

2004-01-07 Thread Ian Holsman
Brian Akins wrote: This may not be apache-dev related, but I do not know where else to ask it. Is it possible to save an entire bucket bridade (including it's buckets) across requests. I looked at ap_save_brigade, but I'm sure that will work. It seems that the brigades are always tied to a co

Re: Save brigade and buckets

2004-01-07 Thread Cliff Woolley
On Wed, 7 Jan 2004, Brian Akins wrote: > So, if I created a bridage like so: > > bb =apr_brigade_create(r->server->pool, r->connection->bucket_alloc); > > The brigade would stiil be "functional" after the connection went away? > IOW, is a brigade dependent upon the buckuet_alloc after the brig

Re: Save brigade and buckets

2004-01-07 Thread Cliff Woolley
On Wed, 7 Jan 2004, Brian Akins wrote: > This may not be apache-dev related, but I do not know where else to ask it. > Is it possible to save an entire bucket bridade (including it's buckets) > across requests. I looked at ap_save_brigade, but I'm sure that will > work. It seems that the brigad

Re: Save brigade and buckets

2004-01-07 Thread Brian Akins
Nick Kew wrote: ICBW here, but ... Brigades are created on a pool. When the pool dies, so does the brigade. Most brigades are created on the Request or Connection pool, so die with the request or connection. So, if I created a bridage like so: bb =apr_brigade_create(r->server->pool, r->connec

Re: Save brigade and buckets

2004-01-07 Thread Nick Kew
On Wed, 7 Jan 2004, Brian Akins wrote: > This may not be apache-dev related, but I do not know where else to ask it. apache-modules maybe? > Is it possible to save an entire bucket bridade (including it's buckets) > across requests. I looked at ap_save_brigade, but I'm sure that will > work.

Save brigade and buckets

2004-01-07 Thread Brian Akins
This may not be apache-dev related, but I do not know where else to ask it. Is it possible to save an entire bucket bridade (including it's buckets) across requests. I looked at ap_save_brigade, but I'm sure that will work. It seems that the brigades are always tied to a connection. Thanks.