Displaying 5 results from an estimated 5 matches for "uncompact".
Did you mean:
compact
2018 Mar 29
2
Is it good practice to have a package depend on Rtools(for unziping of .7z and.rar files)? Crab legal?
...ld 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 come in .7z and .rar format which ideally
the package should unzip (or whatever the correct them for uncompacting
these file types is) so that the underlying .txt or .csv files can be
imported into R.
Not being able to find a solution within R (R only deals with .zip files),
we added a Rtools dependency, in order to use Rtools expanded
unzipping capabilities on the .7z and .rar files.
Is adding a Rtools...
2018 Mar 29
0
Is it good practice to have a package depend on Rtools(for unziping of .7z and.rar files)? Crab legal?
...h 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 come in .7z and .rar format which ideally
> the package should unzip (or whatever the correct them for uncompacting
> these file types is) so that the underlying .txt or .csv files can be
> imported into R.
>
> Not being able to find a solution within R (R only deals with .zip files),
> we added a Rtools dependency, in order to use Rtools expanded
> unzipping capabilities on the .7z and .rar...
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....