search for: precaches

Displaying 14 results from an estimated 14 matches for "precaches".

Did you mean: precache
2006 Nov 09
5
DUNDi precache
Does anyone have any information on how to use DUNDi precaching? Mark Spencer made a post 2 years ago where he hinted it may be possible to configure DUNDi such that you could centralise your DUNDi registration info by using precaching, instead of having each DUNDi peer meshed with every other one... http://lists.digium.com/pipermail/dundi/2004-October/000189.html However, it seems that no
2004 Feb 18
1
Precache an entire OGG?
OK, thanks to the help of another forum user, I got my app compiled and working, but I now need to precache the OGG to memory. My current method somehow winds up in a loop or freezes the application. Here is y source for the decode/precache function. Why is it just freezing? I've let it run for about three minutes, thinking it was doing some heavy decoding, but I was wrong. Once this is
2014 Aug 18
1
rebuilding indexes for dovecot pop3
Hi. doveadm -D fetch -u login \ 'imap.envelope imap.bodystructure size.virtual date.received' '*' according to mail archives allows to regenerate indexes and precache specified headers for imap usage. What headers are needed for dovecot pop3 daemon? I have one server where dovecot works for imap only. For pop3 there is different software being used. I want to migrate to
2019 Jun 10
3
please confirm: sssd not a good idea :)
On 10/06/2019 16:04, vincent at cojot.name wrote: > > There is probably some amount of redtape on this but AFAIK it works > fine for me: My RHEL7.6 hypervisors are joined to my AD DC 4.10.4 VMs > through use of realm '(and thus sssd): > > Here's a RHEL7.6 client: > # realm list > ad.lasthome.solace.krynn > ? type: kerberos > ? realm-name:
2007 Feb 16
1
AW: How to do Theora playback efficiently ?
Hi Ralph, thanks for your posting. Yes, the standard example player in the theora distribution could also do it when theora would not need so much time. I removed the frame dropping from the example because it's based on some audio stuff under Linux that isn't available on Windows. Currently I've no frame dropping handling build in because the first goal is a good raw performance of
2010 Nov 30
2
Asteris 1.8 and mISDN - 'mISDN' (cause 66 - Channel not implemented)
HI, I tried to configure Asterisk 1.8 on one of my test-hosts. I've installed from centos-asterisk.repo (http://packages.asterisk.org/centos/$releasever/tested/$basearch/): Nov 26 15:34:56 Installed: asterisk-sounds-core-en-gsm-1.4.20-1_centos5.noarch Nov 26 15:34:59 Installed: asterisk18-core-1.8.0-1_centos5.i386 Nov 26 15:35:02 Installed: asterisk18-voicemail-1.8.0-1_centos5.i386 Nov 26
2009 Jan 08
7
[RFC] Transcendent Memory ("tmem"): a new approach to physical memory management
At last year''s Xen North America Summit in Boston, I gave a talk about memory overcommitment in Xen. I showed that the basic mechanisms for moving memory between domains were already present in Xen and that, with a few scripts, it was possible to roughly load-balance memory between domains. During this effort, I discovered that "ballooning" had a lot of weaknesses, even though
2005 Dec 16
1
Repacking files on ext3?
I found this thread from a few months ago that seems to have been started by someone with the same problem I have, but it was not resolved: https://www.redhat.com/archives/ext3-users/2005-March/msg00000.html I have been trying to speed up my boot times and I notice that a lot of time is spent waiting on IO. Even with readahead-list precacheing files, it is reading at less than 1/4 of my
2007 Sep 09
0
what is the usable feature in DUNDi?
hi: i create a dundi environment by the "caveman can do it" dundi guide. it works fine.but i want to extend the example for my own need, so i follow the sample dundi.conf config file comes with asterisk 1.4.11 source. i try to use precache and failed, and there seems no one know how to use it after googling. i try to setup dynamic dundi with [*] and failed, and google tell me that
2010 Jan 10
0
libtheoraplayer - a simple to use Theora playback library
Hi everyone, I'd like to present an open-source project I made for use in my company's projects: Theora Playback Library website: http://libtheoraplayer.sourceforge.net It's a multi-threaded library that decodes theora videos, decoding frames in advance (precaching), decodes any syncs audio and provides a very fast YUV->RGB conversion. One of the most important features is that
2019 Jun 12
0
please confirm: sssd not a good idea :)
..., in the sssd.conf settings. It also has a *nasty* behavior with AD or SSSD: it pre-caches *everything* from the LDAP directories it is pointed to, and I mean *everything*. Its configuration supports structures that only search "onelevel" in an LDAP directory, but when designating this it precaches the entire LDAP directory containing the "onelevel" objects at startup time, with no way I ever found to turn off this misfeature. Hilarity ensues if if your LDAP server, whether Samba or AD, are not close enough to the clien thost. And if your LDAP is big, that local cache gets *bulky*,...
2008 Mar 12
2
DUNDi
Is there a way to have a dundi host advertise extensions for another server? A-----------B-----------C I'd like A to reach C through B. A and C would handle the call, B would just be the DUNDi intermediary. Assuming A has 101-199 B has 201-299 And C has 301-399 A sample dundi/extensions/iax config for B is all I need. I can get single DUNDi queries running fine(A->B, B->C,
2006 Dec 30
7
Support for processing after the response has been transmitted?
Hi, Is there any interest in allowing controller methods to do post-response processing? This would be useful where some time-consuming statistic or index processing should be done after the response has been sent so as not to delay a response that does not depend on that processing. This could be implemented by allowing the action method to yield to the process method which in turn yields to a
2011 May 11
8
[PATCH 1/4] Btrfs: map the node block when looking for readahead targets
If we have particularly full nodes, we could call btrfs_node_blockptr up to 32 times, which is 32 pairs of kmap/kunmap, which _sucks_. So go ahead and map the extent buffer while we look for readahead targets. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com> --- fs/btrfs/ctree.c | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git