Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
4k views

How to automatically remove all .orig files in Mercurial working tree?

During merges mercurial leaves .orig file for any unresolved file. But after manually resolving problems and marking a file correct it does not delete the .orig file. Can it be automatically removed ...
5
votes
4answers
488 views

How to remove large file permanently for the whole team

Someone in my team pushed a large file to the git server and everyone in the team now has a clone of the project with the large file. I followed the guide in ...
5
votes
5answers
6k views

clear buffer cache on Mac OS X

Is there a way to programatically clear the buffer cache on the Mac, preferrably in C? Basically, I'm looking for the source of 10.5's purge command. EDIT: I now see this is part of the CHUD tools, ...
4
votes
5answers
1k views

Batch deletion / purging of records via Java ORM

Right - I want to delete (e.g.) 1,000,000 records from a database. This takes a long time -> the transaction times out and fails. So - I delete them in batches say 25000 records per transaction. Using ...
3
votes
4answers
159 views

Does subversion save deleted files?

I'm using a subversion repository which was given to me for free by a generous website. This means that I only have 200MB to work with for the repository. I'm not complaining, though, because I do ...
3
votes
4answers
2k views

Techniques for removing old data on Oracle databases

We have a mature Oracle database application (in production for over 10 years), and during that time, we have been using scripts of our own devising to remove old data that is no longer needed. They ...
2
votes
0answers
53 views

Android live wallpaper crashing because of custom fonts

I'm trying to create a live wallpaper in Android. It has a text drawn on it in the following way, with customs string placed in the assets directory: String path = "fonts/calligraffiti.ttf"; ...
2
votes
0answers
124 views

LOGCAT : purging 197K from font cache

My android application logs such a messages, continuously. Whta is it I am not creating a typeface, just writing something with small font size on screen. 10-30 17:24:41.994: DEBUG/skia(26968): ...
2
votes
1answer
181 views

plone.app.caching and settings Varnish to purge the cache

I am running Plone 4.1 on Ubuntu 10.04. How one should configure Varnish (public IP:80) - default.vcl from Ubuntu/Debian plone.app.caching ... so that purging works correctly I am not that ...
2
votes
2answers
1k views

iPhone: How to purge a cached UITableViewCell

iPhone SDK question: Does anyone have suggestions on how to purge a cached UITableViewCell I'd like to cache these cells with reuseIdentifier. However, there are times when I need to delete or modify ...
1
vote
2answers
33 views

How to delete or purge old files on S3?

Are there existing solutions to delete any files older than x days?
1
vote
0answers
425 views

Nginx reverse-proxy cache invalidation strategies

I've been using Nginx 0.8.5 as a caching reverse-proxy to build out a custom cdn-like solution to speed up our site's load time. It works great so far except that cache invalidation is really cludgy, ...
1
vote
3answers
350 views

How to purge the Database data and log files in MySQL?

I want to purge the ibdata1, ib_logfile0 and ib_logfile1 files in MySQL. Because these files are taking too much space of my C:\ disk. And I don't want to move these files anywhere else in the Hard ...
1
vote
1answer
510 views

Able to delete a specific revision from SVN?

Does SVN allow you to completely and cleanly delete an entire revision from its folder structure? I used Tortoise SVN to delete a file from the SVN repository, and due to size I want it to be ...
0
votes
1answer
31 views

P4 - Purge File State

I'm doing a script for clean history and revision of selected files. I change the FileType of a binary file to binary+S3, so this file will now just keep the 3 last revision. When i use this method ...
0
votes
0answers
39 views

Purge old indexes from Sonatype Nexus

We're using Sonatype's Nexus 1.9.2.2 for proxying maven repositories. Our problem is that the indexes are eating so much disk space. All our repositories are taking about 25GB space, and growing. ...
0
votes
1answer
80 views

How do i purge a linux mail box with huge number of emails?

I have setup some cron jobs and they send the crons result to an email. Now over the months i have accumulated a huge number of emails, like say 300000+ emails, which exceeded my inode limit for the ...
0
votes
1answer
398 views

Varnish purge configuration causing startup errors

I'm having a problem with the purge configuration in Varnish. I have a purge URL configured as below, but on attempting to start the service I get an error, also below. If I comment out this piece of ...
0
votes
2answers
246 views

how to purge journal queue in c#?

i am getting the purge to work on a queue but not on its journal any idea why? MessageQueue oque1 = new MessageQueue(Qname); oque1.UseJournalQueue = true; oque1.Purge();
0
votes
2answers
1k views

Alright to truncate database tables when also using Hibernate?

Is it OK to truncate tables while at the same time using Hibernate to insert data? We parse a big XML file with many relationships into Hibernate POJO's and persist to the DB. We are now planning on ...
0
votes
4answers
896 views

Sort results from find and grab subset (bash)

I have a pair of bash scripts, 1 that dumps mysql dbs, and the second to purge old backups. I have always relied on date, so any files older than 7 days are purged, and new backups created daily. The ...