Questions tagged [purge]
222 questions
3
votes
1 answer
How to make php api call to CloudFlare to Purge individual files by URL from cache
this code worked good to Purge All files from cache .
Example:
$authKey = "MyKEY";
$authEmail = "myEMAIL";
$zoneId = "MYZONEID";
$endpoint = "purge_cache";
$data = [
"purge_everything" => true
];
$url =…

ganjo ali
- 31
- 3
3
votes
1 answer
How to purge Varnish cache when using Cloudflare?
Its seems that purging doesn't work when using Cloudflare(Cloudflare returns 403 Forbidden).
This what i got when i searched for a solution online:
"The problem is that when you are using cloudflare, varinsh does not get the original IP of the…

ninoplan
- 51
- 4
3
votes
1 answer
artifactory max unique snapshots in nuget repository
Local NuGet repositories configured in Artifactory have an option "max unique snapshots". However, the snapshot notion does not really exist in NuGet. So what effect does this configuration have?

Jerome.F
- 31
- 2
3
votes
2 answers
How to - purge a rabbitmq queue using curl
I am checking is there way to purge a rabbitmq queue using curl ? I know using command line, but I am in need of something using curl?
Suggestions/help appreciated
Note : - with this link , I did not get exact curl command to be used

Vishwa
- 607
- 2
- 11
- 21
3
votes
1 answer
Kafka retention policy doesn't work as expected
I want to implement a data replay for some use cases we have, and for that, I need to use Kafka retention policy (I am using join and I need the window time to be accurate).
P.S. I am using Kafka version 0.10.1.1
I am sending data into the topic…

Am1rr3zA
- 7,115
- 18
- 83
- 125
3
votes
1 answer
apache fink 0.10 Filtering duplicates over an infinite stream with time window purge
how can i filter out duplicates over an infinite stream with a time window purge? I dont have infinite space / ram and i know that after say, 2 seconds (on the local clock), any duplicate that can occur will have occured. which means that after 2…

timmy_stapler
- 547
- 7
- 15
3
votes
0 answers
How to implement a policy for purging documents from Kuali Financial System (KFS)?
Is it possible to logically remove documents based on a date?
Currently the Kuali Financial System does not have a built in mechanism for purging or archiving documents. They all remain in their respective tables once created, including…

siddarth
- 131
- 3
3
votes
3 answers
Move Records Which are older than 3 years from One Database (Production DB) to Another DB (Archive DB) Using SSIS
Requirement is to Move Data Older than 3 years from Production DB to Archive DB , and Once Moved Delete those records from Production DB , so at any point of time Production DB will have only last three years of records.
i want to achieve this by…

Ujju
- 43
- 1
- 5
2
votes
0 answers
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): purging 197K from font cache [28 entries]

AVEbrahimi
- 17,993
- 23
- 107
- 210
2
votes
2 answers
Free Up Space Oracle Tablespace (Users)
I'm newbie in Oracle Database. I want to ask related to Oracle Tablespace, especially for Users Tablespace. Every week, I always view and control the capacity of tablespace. However, tablespace user growth is very fast, so the size of the tablespace…

Ripki
- 21
- 1
2
votes
0 answers
Unable to move the cache access is denied. (0x5) python
I am having issues with running simple python script (just printing "hello").
I don't know what I have done because I was able to run scripts on shell but for the moment, the same error is happening again and again and I don't have any…

RubTest
- 21
- 3
2
votes
0 answers
Regular Expression or wildcard on AWS S3 bucket Lifecycle Rule
I have a s3bucket which has the structure below
Now I want to purge only the objects within the success folder. I tried to set the prefix filter as data/*/success/*.zip. but it didn't work. How can I achieve it ? thank you

user1570345
- 193
- 1
- 1
- 11
2
votes
1 answer
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 interest getting per-page cache clears, but having…

Mikko Ohtamaa
- 82,057
- 50
- 264
- 435
2
votes
1 answer
Can't purge rabbitmq queue with pika
My producer code:
conn_params = pika.ConnectionParameters('localhost', 5672, '/')
connection = pika.BlockingConnection(conn_params)
channel = connection.channel()
channel.exchange_declare(exchange='direct_exchange',
…

bumblebee
- 121
- 2
- 10
2
votes
0 answers
PurgeCSS CLI Won't Output CSS Outside of the Command Line
I'm having a hard time trying to extract my css using purgecss from a command line to a separate file. The instruction on the PurgeCSS.com for using the commandline are not specific enough:
By default, the CLI outputs the result in the console. If…

ChosenJuan
- 891
- 3
- 26
- 56