search for: unnessari

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

Did you mean: unnessary
2009 Aug 29
3
what is the best way to delete so many queue files?
Hello, all. I found that so many unnessary queue files are saved at /var/spool/clientmqueue/ directory. I tested two way to delete these files. 1. # rm -rf /var/spool/clientmqueue/* 2. # cd /var/spool/clientmqueue/ ; find . | xargs rm -fv But this makes a few load of the system and took too much time to delete. What is the best way to delete fast without too much load?
2004 Jan 07
1
sambaProfilePath
dumb question... if I put \\SERVER\PROFILES\%u in sambaProfilePath for some user and that user logs in for the first time, it literally creates a %u directory in the proper folder and not the uid name. Am I dumb? Must I actually hard code each one in? Craig
2006 Feb 27
0
method dispatch and in-place modification? - unclass, RemoveClass, getDataPart, method dispatch
I have a little problem about method dispatch and "unnessary" copying. Basically what I would like to do is: `[.myclass` <- function(x, i,j, extraopt=TRUE/FALSE, drop=TRUE) { ...do stuff depending on extraopt... value <- Nextmethod("[", x, i,j, drop=TRUE) ... do more stuff depending on extraopt... } I have two general problems: (1) NextMethod() really
2007 Apr 26
1
recompile kernel 2.6.20.7 (so I get updated forcedeth driver)
I installed 2.6.20.7 copied /boot/config{something} to .config make oldconfig make oldconfig make menuconfig - turned on drivers -> Sata -> nvidia make bzImage make modules make modules_install make install rebooted. Seems like the issue I had with forcedeth (nvidia) bad MAC address is gone. However, the iptables gives errors. Where in the menu tree do I enable what iptables needs??? I
2006 Jul 31
16
Sorting performance
I''m using acts_as_ferret to index one of my rails models. Right after I start the app the first request that orders by some ferret field will take very long. Subsequent ones seem to be fast. I guess some caching is going on. Any tips on solving this? Pedro.
2006 Jul 26
15
Rails without a primary key
I''ve been trying to use Rails on a database where the biggest datawarehouse-style table doesn''t have a primary key. It really doesn''t make sense and just adds extra unnecessary space. I do have, however, a column that I normally use to search on (IP) that returns many rows. The table also references several other tables through rails-friendly foreign keys. Simple AR