search for: uncompacted

Displaying 5 results from an estimated 5 matches for "uncompacted".

Did you mean: compacted
2018 Mar 29
2
Is it good practice to have a package depend on Rtools(for unziping of .7z and.rar files)? Crab legal?
I created this package, https://github.com/lucasmation/microdadosBrasil which we are preparing for Cran submission. The package facilitates downloading and reading most of the microdatasets (household surveys, Census, etc). For each dataset it: (a) downloads the data from the data providers (b) "unzip" the necessary files (c) imports the data into R. For (b), some of the datasets
2018 Mar 29
0
Is it good practice to have a package depend on Rtools(for unziping of .7z and.rar files)? Crab legal?
r-package-devel is the right mailing list for your query, not here. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Thu, Mar 29, 2018 at 6:56 AM, Lucas Ferreira Mation <lucasmation at gmail.com> wrote: > I created
2009 Apr 12
2
Indexing speed benchmark - Xapian, Solr
I came across this benchmark between Xapian & Solr: http://www.anur.ag/blog/2009/03/xapian-and-solr/ According to the benchmark, a doc set that took Solr 34 min to index took Xapian 7 hours. Solr's index is also much smaller - 2.5GB to Xapian's 8.9GB. I'm new to Xapian. Just wondering if results like these are typical? Is indexing speed & size a known issue in Xapian? Or is
2013 Jun 19
2
Compact databases and removing stale records at the same time
I'm trying to compact (or at least merge) multiple databases, while stripping search records which are no longer required. Backstory: I've inherited the Cyrus IMAPd xapian-based search code from Greg Banks when he left Opera. One of the unfinished parts was removing expunged emails from the search database. We moved from having a single search database to supporting multiple
2013 Jun 19
2
Compact databases and removing stale records at the same time
...ng databases building cyrus.indexed.db copying from tempdir to destination renaming tempdir into place finished compact of user.brong (active temp:92,archive:3,meta:0,data:58) real 1m23.956s user 0m32.604s sys 0m5.948s [brong at imap14 brong]$ du -s * 759992 xapian.58 That's about 75% of the uncompacted size. > > catch (const Xapian::Error &err) { > > syslog(LOG_ERR, "IOERROR: Xapian: caught exception: %s: %s", > > err.get_context().c_str(), err.get_description().c_str()); > > If err has a context, err.get_description() will actually include it....