The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

“Optimizer” for game using Javascript or similar (noob)

I'm looking for a little advice as an ignorant noob. I'm interested in learning more about making websites but often struggle to find a project that interests me enough to get me started. I found a ...
0
votes
0answers
20 views

Does SQL Server optimizer do something about repetition of parameter adjustments?

I have a stored procedure with the following body (and arguments @ReceviedSince, ReceivedUntil and Filter): SELECT [TQ].[Guid], [Q].[Text], [A].[Text], ...
1
vote
1answer
24 views

How to add a plugin to the requirejs r.js optimizer, that only runs during build?

I'm trying to write a custom script/plugin to be included in the requireJS r.js optimizer (for fingerprinting static files and one for bundling JSON resources). What I have not figured out is how to ...
1
vote
0answers
21 views

Why does RequireJS optimizer omit '/' in module-names in Windows?

After running our RequireJS build scripts on Windows for a module that lives in components/Cinema.Helper.Ticket.js, it outputs the following module name define("componentsCinema.Helper.Ticket" ... ...
0
votes
1answer
55 views

HTML DOM Events with Visual Website Optimizer

I trying to ge a AB-test working on a site and I’m not able to edit anything at the original variation and I want to but a custom conversion goal at a fake control page and at the variation page. If ...
2
votes
0answers
170 views

GCC 4.7.2 Optimization Problems

Summary I'm porting ST's USB OTG Library to a custom STM32F4 board using the latest version of Sourcery CodeBench Lite toolchain (GCC arm-none-eabi 4.7.2). When I compile the code with -O0, the ...
6
votes
0answers
115 views

Strange behaviour of the Hotspot loop condition optimizer

Based on the discussions around an answer to this question, I discovered a really strange behaviour of the Java Hotspot optimizer. The observed behaviour can at least be seen in the Oracle VM ...
0
votes
1answer
42 views

Is there a YUI3 Optimizer similar to RequireJS Optimizer?

I've been using YUI3 to develop my personal project. I like YUI3, except that it looks like there's no way to combine all the dependencies into one single js file. I use RequireJS as well and its ...
0
votes
2answers
108 views

Optimize Union All SQL

Could you help me optimize the following Union All Query? Any idea where to start? Details: SQL Plan shows | 7 | TABLE ACCESS FULL | DELAY_DATE | 17533 | 171K| 25 ...
0
votes
2answers
126 views

Matlab: poor accuracy of optimizers/solvers

I am having difficulty achieving sufficient accuracy in a root-finding problem on Matlab. I have a function, Lik(k), and want to find the value of k where Lik(k)=L0. Basically, the problem is that ...
0
votes
2answers
27 views

Should SQL JOINs be placed in particular order for performance reasons?

Let's say I have the following query. If there are no matches when joining t1 and t2, are all of the other joins ignored by MySQL? Reason I ask is that if not, then I will break up the query and use ...
4
votes
1answer
81 views

Objective C Seg Fault that only occurs when compiler optimizations are enabled

I'm stumped trying to debug an issue on iOS that seems to only occur with Release builds which seems to implicate that the optimizer is doing something that isn't playing nicely with my code. The ...
1
vote
5answers
110 views

C++ - What's the proper way to perform a speed test?

I searched many questions which asked related information, but the answers didn't quiet match exactly what I wanted for an answer. I'll try to explain the issue as best I can. Basically when running ...
1
vote
0answers
57 views

Increase dimension of gsl minimizer

I've to develop an optimizer to calculate the 14 parameters of a hidden markov chain (I know its much but possible :)). I've already done the same optimizer using IMSL(which I had during an intership) ...
1
vote
1answer
142 views

RequireJS Text Plugin Optimization throws an error

My project uses the text plugin for requirejs, and although the plugin works properly, the optimizer does not. This a test of my application file: define([ 'jquery', 'underscore', ...
0
votes
1answer
269 views

Optimizer and Handlebars client-side jade templates

I have an issue when trying to optimize client scripts that use client-side jade templating. Initially, I had an error as described in Require.js + Backbone optimization, but then I removed the "text" ...
4
votes
1answer
128 views

RequireJS + jQuery namespace issue

If I run the optimizer without the "namespace: 'foo'" flag everything works as expected. When I add "namespace: 'foo'" into the app.build.js I get this error: GET: file:// (path to the project) ...
1
vote
1answer
106 views

Nextag ROI optimizer code for woo commerce. How do I remove the # sign from my order number?

Hi I am trying to install the Nextag ROI optimizer code from Nextag into my woocommerce theme/plugin. (thankyou.php template) It is working except I cannot get rid of the # symbol in the final output. ...
1
vote
1answer
299 views

jquery visual website optimizer code

I have a javascript code from visual website optimizer that will be placed on HTML header: var _vwo_code=(function(){ var account_id=7237, settings_tolerance=2000, library_tolerance=1500, ...
1
vote
0answers
93 views

RequireJs: Using optimizer plugin to optimize custom directory structure

while creating a mobile web application using jquerymobile, jquery, requirejs, and backbone for routing, I was not able to optimize it by running the node.js command as instructed here: ...
4
votes
0answers
386 views

How to tell clang not to save registers to stack?

The Goal I'm currently trying out avr-llvm (a llvm that supports AVR as a target). My main goal is to use it's hopefully better optimizer (compared to the one of gcc) to achieve smaller binaries. If ...
1
vote
3answers
555 views

prevent full table scan

I have following query: select id, c1, c2, c3 from tbl t1 join (select id from tbl t2 where upper(replace(c5, ' ', '')) like upper(?) ) j on j.id = t1.id ? is some ...
3
votes
1answer
180 views

Adding 'distinct' keyword to oracle query obliterates query performance for no reason

I am quite confused by something I'm seeing in an Oracle 10 database. I have the following query. select t2.duplicate_num from table1 t1, table2 t2, ( select joincriteria_0 from intable1 it1, ...
2
votes
1answer
373 views

MongoDB uses wrong index

I am having trouble understanding this issue - I have a sharded cluster in which one of the shards (Shard 2) seems to use the wrong index. Im querying by the shard key, which is site id and first ...
1
vote
2answers
204 views

backbone with requirejs : View and subviews and r.js

I have a view that requires requires Backbone, Undescore, jquery etc. example define(['jquery','undescore','backbone','subviewA', 'subviewB'], function($,_,Backbone, SubviewA, SubviewB){ var View ...
1
vote
0answers
283 views

RequireJS / r.js 'baseURL' Property Seemingly Ignored

I am trying to use the r.js optimizer to build all of my dependencies into a single file. Here is my file structure: app bin src css main.css js libs raphael-2.1.0 ...
1
vote
6answers
177 views

What's the simplest “unused” code that won't be optimized out?

Very frequently, I want to test the value of a variable in a function via a breakpoint. In many cases, that variable never actually gets referenced by any code that "does stuff", but that doesn't ...
4
votes
2answers
73 views

Select * and the query optimizer

I have a very simple MySQL table with some very weird behavior. Incidentally the weird behavior is exactly what I want it to do, but I don't want to put this into production not know why its doing ...
0
votes
1answer
33 views

Strange mysql issue with query optimizer

I have 2 mysql servers. 1 node is master and the other acting as slave, replicating from the master The 2 nodes have identical data and schema. However, 1 particular query is executed differently ...
0
votes
0answers
64 views

How to remove empty folders from build directory when using r.js in reuirejs

When i build my file i specify in the build file to delete combined files by specifying removeCombined: true but this leaves me with empty directories. Is there a way in which i can remove those ...
0
votes
0answers
210 views

PHP 5.2 encoded file is not seen by Zend Optimizer 4.1+

I have an PHP file encoded and normally working on PHP 5.2.17 with Zend Optimizer installed. I need it to be working on PHP5.3.9. I have installed ZendOptimizerPlus.so for x64 Linux (extracted from ...
1
vote
1answer
208 views

r.js optimizer resolving configured deps files

I try requireJS optimizer to pack all my scripts into one file and I cannot overcome one issue. My requireJs configuration is var require = { // 'baseUrl': 'static/scripts', 'paths': { ...
2
votes
1answer
183 views

Finding a multilanguage compiler or optimizer (c, c++, java)

In a nutshell, I am searching for a method to edit an open source compiler or optimizer to change traditional lock implementations to software transnational memory transactions. I have three target ...
0
votes
1answer
217 views

.htaccess + godaddy + smartoptimizer

i have godaddy shared hosting account. i could not set .htaccess file for smartoptimizer. <IfModule mod_expires.c> <FilesMatch "\.(gif|jpg|jpeg|png|swf|css|js|html?|xml|txt|ico)$"> ...
0
votes
1answer
292 views

Complicated Analytics+Website Optimizer tracking

I have a sort of complicated tracking script. :-) Basically, I want to track user's click on a link (=that's a conversion). So the link has a javascript onClick event: <a ...
0
votes
1answer
142 views

Is there any good parallel Mixed-Integer Programming optimizer which can run on the Linux?

Is there any good parallel Mixed-Integer Programming optimizer which can run on the Linux? Especially those who provide APIs of high level language, such as Java, C#, or C++
2
votes
2answers
201 views

mysql ORDER BY isn't using the index when multiple fields are present in SELECT

I'm trying to simplify a query to figure out why it's so slow on the production server. The idea is to grab the X most recent entries for pagination. The problem is, MySQL's optimizer seems to want ...
0
votes
5answers
394 views

How does Select Distinct work on a Primary Key in SQL?

How does the SQL Optimizer handle Select Distinct on a primary key? For eg Employee Table - (EmpId int primary key, EmpName) select distinct EmpId from Employee. Would the optimizer reject the ...
3
votes
3answers
738 views

How do I tell the MySQL Optimizer to use the index on a derived table?

Suppose you have a query like this... SELECT T.TaskID, T.TaskName, TAU.AssignedUsers FROM `tasks` T LEFT OUTER JOIN ( SELECT TaskID, GROUP_CONCAT(U.FirstName, ' ', U.LastName ...
2
votes
2answers
221 views

Javascript, CSS optimizer

Are there any analogues for Jammit or Juicer, but written on Python?
3
votes
0answers
126 views

How good is the CLR optimizer? [closed]

I am a little bit disappointed in the CLR's optimizer. Suppose I have the following piece of code: int i = 0; for (int j = 0; j < 10; ++j) ++i; Console.WriteLine("{0}", i); It's clear that at ...
3
votes
1answer
343 views

Derby's subquery optimization issue

here is to follow my previous question on Derby. I finally got it to show me the execution plan for my query and intresting values came up: http://pastebin.com/wQAicPAV (SO parser goes crazy so i need ...
0
votes
2answers
438 views

Why does postgresql planner not use index scan instead of explicit sort within a stored function?

I have a function that executes a query with ORDER BY clause. When I call this function, postgres gets stuck, but when I execute the query with the values I pass to the function, it responds ...
0
votes
1answer
59 views

strange html file returned by web server

While working on a web crawler, I ran across this strange occurrence; the following is a snippet of the page content returned by the web server for http://nexgen.ae : < ! D O C T Y P E H T M L ...
2
votes
2answers
307 views

Compiling C with optimization flag

I am comparing two assembly forms of two C files, one with an optimization flag (-O2), and the other without. My question is: Why is that in the optimized assembly version, the compiler puts the ...
1
vote
3answers
897 views

post decrement in while conditon in C

I've done a search and I’ve found nothing relevant to my query. I am currently debugging a C optimizer and the code in question looks like this: while( x-- ) array[x] = NULL; What should happen in ...
4
votes
2answers
355 views

Optimize SQL Query

I have problem with optimize this query: SET @SEARCH = "dokumentalne"; SELECT SQL_NO_CACHE `AA`.`version` AS `Version` , `AA`.`contents` AS `Contents` , `AA`.`idarticle` AS `AdressInSQL` , `AA` ...
1
vote
2answers
480 views

How will Oracle handle a where clause condition comparing against a subquery with a constant result?

Let's say I have the following: select primary_id from myschema.table_a where row_changed_date > ( select last_refreshed from myschema.last_refresh lr ...
1
vote
1answer
375 views

Is ASP.NET (webforms) Incompatible with Google Website Optimizer Multivariate Testing?

I've been stuggling all morning trying to get a multivariate test going in google website optimizer. I've copy and pasted the header/footer code into the pages, and setup a basic page section just to ...
1
vote
0answers
198 views

Query parser and optimizer for OSGi/LDAP filters/queries?

I'm looking for a query parser and optimizer that can work with OSGi filter conditions, which are based on LDAP query syntax. Preferably something implemented in Java, but a different implementation ...

1 2