A technique to minimize time spent waiting for some needed data to arrive. If the request for this data can be issued asynchronously and in far enough in advance of it's use, then useful independent work can be performed while waiting for it to arrive, thus hiding the cost of the wait. Examples ...
0
votes
2answers
109 views
How can I prefetch infrequently used code?
I want to prefetch some code into the instruction cache. The code path is used infrequently but I need it to be in the instruction cache or at least in L2 for the rare cases that it is used. I have ...
1
vote
0answers
56 views
ActiveMQ, consumers with prefetch=0, increasing “Enqueues” count in console (because of polling?)
Using Spring-configured ActiveMQ, with a listener configured with a prefetch=0 connectionFactory and 5-5 concurrency, we're seeing the listeners apparently poll for new messages instead of the broker ...
0
votes
0answers
40 views
Prefetching images on dynamically generated pages
HTML5 Prefetching is a great tool and in the past it's provided a users with a much better user experience when navigate image galleries. Though, in this case I can't seem to get my images to preload ...
0
votes
0answers
17 views
how can I set posix_fadvise in scheduling class idle
I need do lots of prefetch ,but I dont wanna these prefetch slow some of my thread.I try to use posix_fadvise or readahead and set them in scheduling class idle,but it does not work.I can just set ...
1
vote
0answers
100 views
Does Visual Studio C/C++ support automatic software prefetching?
Compilers like Intel and IBM's xlc can insert data prefetch instructions automatically.
I have some code that could be helped with prefetching at the cost of readability. That is, there's a natural ...
0
votes
0answers
40 views
Can I preload all my project data into RAM automatically in Windows 7?
I am working on a massive research project and I am getting a new computer and building it to work on this project... I would like to build it with as much RAM as possible (32GB) so that I can have ...
0
votes
1answer
48 views
Prefetching Internal Pages with PHP and jQuery
I'm trying to build myself a prefetcher for a ModX Revo site I'm building.
I'm now getting a Syntax Error on the <script type="text/javascript"> line
How can I get this to work correctly?
I'm ...
0
votes
0answers
57 views
How can we see if prerendered resource or prefetched resource is actually prerendered or prefetched on Firefox, Safari and IE10?
<!DOCTYPE html>
<meta charset="utf-8">
<title>An HTML Document</title>
<link rel="prefetch" href="https://www.apple.com/">
<link rel="prerender" ...
0
votes
0answers
66 views
What's the right method to set a new prerender or prefetch in HTML?
<!DOCTYPE html>
<meta charset="utf-8">
<title>An HTML Document</title>
<link rel="prefetch" href="https://www.apple.com/">
<link rel="prerender" ...
0
votes
2answers
120 views
Fetching large number of data from CoreData using two NSFetchedResultsController
I am trying to fetch 10000records from CoreData in a UITableView using NSFetchedResultsController and trying to make it as fast as possible (since the request has a sort descriptor it takes longer to ...
2
votes
1answer
83 views
Software prefetching across page boundary on x86
My understanding is that hardware prefetching will never cross page boundaries. I'm wondering if a software prefetch has the same restriction i.e. can I use a software prefetch to avoid a future TLB ...
0
votes
1answer
120 views
How to change this C code to prefetch some data?
I make an application which checks matrix efficiency. I use various methods (for example change loops, 2/3 loops, openmp etc). One thing left: I have to check data prefetch.
Code:
#define SIZE 5000
...
0
votes
1answer
63 views
What should i use prefetch or next?
As some of you may know, FireFox has the option to prefetch webpages.
Now from the docs :
<link rel="prefetch alternate stylesheet" href="mozspecific.css">
<link rel="next" ...
0
votes
0answers
40 views
Will HTML Prefetching Also Start Downloading Streaming Content?
Prefetching is one of the new standards that make up HTML5. You can add it to tags like this:
<link rel="prefetch" href="/images/big.jpeg">
My questions:
What happens if you try and ...
0
votes
0answers
43 views
does fread use prefetch? if so, how does it deal with consistency issue?
I have a question about fread's behavior. fread is from stdio.h
I have done an experiment that if I fread(2KB), then the strace log shows there is a read()=4KB. So, this implies that fread has used ...
2
votes
1answer
191 views
Prefetch in cuda (through C code)
I am working on data prefetch in CUDA (Fermi GPU) through C code. Cuda reference manual talks about the prefetching at ptx level code not at C level code.
Can anyone connect me with some documents ...
0
votes
1answer
138 views
Caching or prefetching Django's inverse relationships
Consider a shema with a Publishers table and a Books table so that
def Publisher(models.Model):
city = models.CharField()
...
def Book(models.Model):
title = models.CharField()
publisher = ...
2
votes
2answers
897 views
Why does django's prefetch_related() only work with all() and not filter()?
suppose I have this model:
class PhotoAlbum(models.Model):
title = models.CharField(max_length=128)
author = models.CharField(max_length=128)
class Photo(models.Model):
album = ...
0
votes
1answer
476 views
C++ Memory mapped file data prefetching
I'm dealing with very large memory mapped files (200+ GB) which can not be loaded fully into memory, and are accessed randomly. The mapped files are stored on a solid state drive array, but I still ...
0
votes
1answer
173 views
Android prefetch Webview
I'm creating a "Daily ...." application for Android. (Let's say "Daily flowers") The idea is: you get a notification each day and when you click it, it will show you a picture of a flower + some text. ...
0
votes
0answers
74 views
firefox occasionally draws partial image
I'm fetching dynamic images from a server with javascript, setting the src attribute of img tags. I prefetch the images by creating img tags that aren't visible, waiting for all the load events, then ...
1
vote
0answers
131 views
jQuery Mobile prefetch page automatically
I need to add a preloading page to my JQM project. I figured the best way to do this was by using the JQM Prefetch function on the preloading page and get it to fire once the prefetched(home page) ...
2
votes
1answer
307 views
where is _mm_prefetch in Visual Studio 2012?
I would like to use instruction _mm_prefetch. MSDN specifies that it is in header mmintrin.h, but there is not. I use Visual Studio 2012.
2
votes
1answer
202 views
Mozilla Firefox prefetching rel=“next”
Firefox appears to prefetch anything that is set in a meta tag like so:
<link rel="next" href="http://domain.com/page/2">
More can be read about this here: ...
2
votes
2answers
122 views
Does prefetching a write ever affect single core performance?
Some architectures have a "prefetch write" instruction to indicate to the CPU that you're going to be writing to a memory location before you actually do it. I understand that on a multicore machine ...
1
vote
1answer
654 views
Backbone.Collection Prefetching & Caching
Are there any recommended libraries, patterns or examples on how to implement Prefetching and/or caching on a Backbone.Collection? For example, I have events I want to display in a calendar that has ...
2
votes
1answer
174 views
How to disable creating .pf (prefetch) file in Windows MFC application?
I'm writing a C++ MFC application. I want to avoid writing any data on HDD during program execution.
When I open up my application, Windows immediately creates a .pf file in a directory ...
0
votes
0answers
172 views
Applying Pre-fetching in this C++ code for finding maximum value index
The following code finds min/max and its location in a given array:
//Finding the array index//
#include "stdafx.h"
#include <iostream>
#include <iterator>
#include <list>
...
0
votes
1answer
470 views
Django prefetch_related on many to many field always yields empty array
I'm having trouble with Django's prefetch_related.
Here are my models.
class Terrain(models.Model):
name = models.CharField(max_length=255)
class Route(models.Model):
name = ...
0
votes
1answer
181 views
Fetching multiple nested collections eagerly in separate SELECTs using NHibernate
I have the following database structure, which I need to traverse entirely for a report.
Product -> ProductVariation -> ProductMedaItem
Product -> CategoryLinks -> Category
I have a ...
2
votes
3answers
828 views
Rel PreRender/PreFetch, does it execute JS?
<!—Firefox Prefetching -->
<link rel="prefetch" href="http://www.example.com/page2.html">
<!—Chrome Prefetching -->
<link rel="prerender" ...
0
votes
1answer
46 views
Incorrectly calculating dialog box position because of dynamic image loading?
I'm working on a gallery type application - one template puts together a popup dialog for a larger view of thumbnail images when clicked. The server path to the image is included as a template ...
4
votes
1answer
211 views
Does html5 link prefetch affect Google Analytics?
Does the html5 link prefetch attribute cause a visit to be counted on the prefetched page in Google Analytics?
<link rel="prefetch" href="http://someurl.com/page.htm" />
This SO question about ...
1
vote
2answers
927 views
Prefetching data to cache for x86-64
In my application, at one point I need to perform calculations on a large contiguous block of memory data (100s of MBs). What I was thinking was to keep prefetching the part of the block my program ...
1
vote
0answers
269 views
Unable to disable the hardware prefetcher
I am trying to disable the hardware prefetcher to run some memory benchmarks on an Intel core i5 2500. The problem is that there is no option whatsoever in my BIOS to enable or disable the prefetcher. ...
2
votes
2answers
213 views
How to build an application layer pre-fetching system
I'm working in a C/C++ mixed project that has the following situation.
I need to have a iteration to go through very small chunks (rarely larger chunks as well) in a file one by one. Ideally, I ...
0
votes
2answers
297 views
Knowing when prefetch is happening in firefox
Is there any way to see when prefetching is happening in Firefox? In Chrome there is an internal task manager which shows when websites is being pre-rendered in background is there anything similar ...
2
votes
1answer
150 views
Windows XP slower to read text files at startup in C++; prefetch?
I have an application that is written in C++, Visual Studio 2005 running exclusively in Windows XP.
When the application is launched it read a large number (> 20000) of text files (.nfo) which ...
3
votes
1answer
1k views
Core Data Faulting and Fetching of To-Many Relationships
I have several "theory" questions on Core Data behavior related to what happens with a to-many relationship and when to rely on walking the relation from a parent entity and when a fresh fetch request ...
0
votes
1answer
117 views
Nhibernate intelligent pre-fetching in 1 to Many Scenario
We are using NHibernate 3.2 with fluent mappings.The following is a simple 1 to Many mapping in highly scalable performance sensitive system
public class Root
{
public Root()
...
4
votes
1answer
280 views
Looking for the best equivalents of prefetch instructions for ia32, ia64, amd64, and powerpc
I'm looking at some slightly confused code that's attempted a platform abstraction of prefetch instructions, using various compiler builtins. It appears to be based on powerpc semantics initially, ...
0
votes
1answer
125 views
Does UIWebView auto prefetch pages?
Does UIWebView auto prefetch pages?
This is my situation:
The main page is a local HTML file containing 3 links to other local HTML files. In one of them I have an iframe that loads a page from the ...
2
votes
1answer
855 views
Dangers of using HTML5 prefetch?
Ok, so it isn't a huge worry yet as it is only supported by a few browsers:
• Mozilla Firefox: Supported
• Google Chrome: Supported since version 13 (Use an alternate syntax)
• Safari: ...
1
vote
1answer
75 views
In a web app, how do I preload a set of arbitrary files to view them more quickly as I go through them?
Suppose I have a .NET web application that contains two panes. One pane is a viewer capable of displaying a variety of large file types. The other pane contains an arbitrary list of files, e.g. ...
1
vote
1answer
800 views
Optimize NHibernate: Load all data from specified tables
Scenario: I have built an ASP.NET MVC application that manages my cooking recipes. I am using FluentNHibernate to access data from the following tables:
Users
Categories
Recipes
RecipeCategories ...
1
vote
2answers
543 views
Prefetching in Nvidia CUDA
I'm working on data prefetching in nVidia CUDA. I read some documents on prefetching on device itself i.e. Prefetching from shared memory to cache.
But I'm interested in data prefetching between CPU ...
0
votes
1answer
58 views
How to open and read 1000s of files very quickly
My problem is that application takes too long to load thousands of files. Yes, I know it's going to take a long time, but I would like to make it faster by any amount of time. What I mean by "load" ...
1
vote
2answers
707 views
how to test prefetch/prerender
I have started to load a few key resources and pages using the prefetch/prerender system.
Is there a way to ensure that the resources in question are actually being preloaded?
1
vote
3answers
118 views
Is excessive use of prefetch bad?
Just read this article on prefetching, and it states:
Of course, you have to be careful (Don’t prefetch your entire
website!)
I just wondered, why? If the work is going on behind the scenes, ...
7
votes
1answer
580 views
How to use intel prefetch pragma when data hidden inside an object?
Intel helpfully provides a prefetch pragma; for example
#pragma prefetch a
for(i=0; i<m; i++)
a[i]=b[i]+1;
will prefetch a a certain number of loop cycles ahead, as determined by the compiler.
...


