Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-14 Thread Mahdi Farhat
i want faster request .. 300-400 ms is too high ..sometime they go down to 150 , ifyou can check bidzeed.co M the request is 90ms what do you think shall i do On Sunday, June 12, 2016 at 4:18:35 PM UTC+3, Walter Lee Davis wrote: > > It's not clear what your goal is. Do you want to reduce

Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-12 Thread Walter Lee Davis
It's not clear what your goal is. Do you want to reduce the number of requests from the page to your server, as I suggested, or do you want each request to be faster? In you message, you mentioned that I was seeing the faster return because "the cache was on". I can't think of a reason why you

Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-11 Thread Mahdi Farhat
i have sent you an email on wal**@wdstudio.com please reply On Saturday, June 11, 2016 at 9:28:59 PM UTC+3, Walter Lee Davis wrote: > > I'm watching it in the Network pane of Safari Web Inspector. It's running > at a total duration of 1.464 ms, but a latency of 159.4 ms. So your server > is

Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-11 Thread Walter Lee Davis
I'm watching it in the Network pane of Safari Web Inspector. It's running at a total duration of 1.464 ms, but a latency of 159.4 ms. So your server is replying nearly instantly when it gets the request, but there's a lag while the message travels to and fro. Overall, this is astoundingly fast.

Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-11 Thread Mahdi Farhat
please check li1510-169.members.linode.com On Saturday, June 11, 2016 at 5:52:02 PM UTC+3, Walter Lee Davis wrote: > > > > On Jun 10, 2016, at 10:40 AM, Mahdi Farhat > wrote: > > > > i asked a developer to develop me a a penny auction script but the > request are slow ,

Re: [Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-11 Thread Walter Lee Davis
> On Jun 10, 2016, at 10:40 AM, Mahdi Farhat wrote: > > i asked a developer to develop me a a penny auction script but the request > are slow , 300 ms on local machine and 600ms on server > can i know why? can you help me? is the code not optimized? Where are you

[Proto-Scripty] help me with prototype ajax .. request are slow

2016-06-10 Thread Mahdi Farhat
i asked a developer to develop me a a penny auction script but the request are slow , 300 ms on local machine and 600ms on server can i know why? can you help me? is the code not optimized? function auctionTimer(dt,no,id) { //alert(no); var end = new Date(dt); var now_date= new

[Proto-Scripty] help me, about Class.create

2011-01-12 Thread 쏘주망태
// my code : var Parent = Class.create({ intro:{ name:'', age:0 }, initialize:function(){}, show:function(){ document.write(this.intro.name); } }); var ChildA = Class.create(Parent, { initialize:function(){ this.intro.name = 'A'; this.intro.age = 10; } });

[Proto-Scripty] Help me with hashes

2009-10-29 Thread Buda
Help me please, this operation is best I have an object var MyObj:{ obj1:{ ... prop: ['А', 'C', 'D', 'E'] ... }, obj2:{ ... prop: ['B', 'C', 'D', 'E'] ... }, obj3:{ ... prop: ['А', 'E'] ... }, obj4:{ ... prop: ['D', 'E'] ... } } I neet to

[Proto-Scripty] Help me with this

2009-01-17 Thread Colorblind
Hy everyone, I have the following script : if (Object.isUndefined(Axent)) { var Axent = { } } Axent.SelfLabeledInput = Class.create({ initialize: function() { var labelSelector = arguments[0] || 'label'; $$(labelSelector).findAll(function(l) {return