由买买提看人间百态

topics

全部话题 - 话题: timestamp
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
a**********s
发帖数: 8
1
来自主题: Database版 - How to insert CURRENT TIMESTAMP into sql
i followed example but it doesn't accept, always say there is error parse near
TIMESTAMP, pls. help me and tell me what the problem is.
I did:
INSERT INTO items VALUES(......,CURRENT TIMESTAMP,...);
The attribute has been set to be TIMESTAMP when i created this table.
Why I can't insert CURRENT TIMESTAMP?
t**r
发帖数: 3428
2
有懂bigtable ,hbase,c*的么?问一个timestamp的问题
bigtable里面timestamp的用法在hbase,c*里有么?
比如:by specifiying timestamp, I can get value of latest version that is
earlier than a specified timestamp.
w**z
发帖数: 8232
3
C*每个column 有个timestamp, read return 的时候,如果cl >1,会比较timestamp of
the column from different node, in case of inconsistency, return the column
with the latest timestamp. client doesn't need to deal with the vector clock
crap. the last write wins.
f****4
发帖数: 1359
4
timestamp怎么同步?就是ntpd也有几十~一百ms的延时。多DC下面怎么搞?
就算不把C*当queue用这return the column with the latest timestamp还是需要
timestamp是正确的才行
f****4
发帖数: 1359
5
好吧,我没讲清楚:C* in case of inconsistency, return the column with the
latest timestamp
C*自己解决inconsistency就是假设每个record的timestamp是sync的,这不是我应用需
要到ms精确度。
App cluster来做timestamp。你在app cluster里面怎么做同步?
z**********8
发帖数: 2049
6
来自主题: Database版 - TIMESTAMP的作用是啥?
有一个database的所有tables,当中都有一个COLUMN,timestamp。 请教用意何在?
不是已经有PRIMARY KEY, 或者identity之类的了吗?是不是无法UNIQUE的TABLE,才需
要,保持每个RECORD是UNIQUE的。
啥时候,会用到timestamp?
h**o
发帖数: 548
7
I think you want me to use strptime(). and I can now get the timestamp by
using
strptime("18 Oct 2008 14:11:00", "%d %b %Y %H:%M:%S", &tm).
but how do I convert GMT time "18 Oct 2008 14:11:00 GMT"to my local
timestamp, no matter where my local computer locates?
w**z
发帖数: 8232
8
In most of cases, C* generates timestamp at server side for you. Make sure
your NTP is setup correctly which is a prerequisite for C* cluster
It's not advisable to generate timestamp at client side and pass it in with
your request.
n**m
发帖数: 255
9
来自主题: Database版 - How to insert CURRENT TIMESTAMP into sql
It should be CURRENT TIMESTAMP if you use DB2. I just tried it on my Machine.
and works.
i****a
发帖数: 36252
10
来自主题: Database版 - TIMESTAMP的作用是啥?
timestamp 记录时间啊...
c*****d
发帖数: 6045
11
来自主题: Database版 - TIMESTAMP的作用是啥?
所有的表都有timestamp?
i****a
发帖数: 36252
12
来自主题: Database版 - TIMESTAMP的作用是啥?
原来 MSSQL 里面 timestamp 不是时间
s*****w
发帖数: 1527
13
假如说我有一个程序,让用户输入一个文件,然后存成带有日期的文件名,
myProgram filename
得到
filename + "." + Date.now()
那么不同用户可能输入同样文件名,我希望timestamp可以区分它们。
请问可以吗?
h**o
发帖数: 548
14
suppose the I get a http response with header:
"Expires: Mon, 26 Jul 2009 05:00:00 GMT", I need to converts it to timestamp
of the computer's current time?
Thanks.
m*****e
发帖数: 4193
15
ctime

timestamp
g*****g
发帖数: 34805
16
You want to have the timestamp as column name for indexing purpose.

of
column
clock
f*******t
发帖数: 7549
17
Hbase里有,get时可以指定一个timestamp
g*****g
发帖数: 34805
18
He basically wants to do range query on timestamp.

timeuuid
g*****g
发帖数: 34805
19
Timestamp can be marked on your application cluster. If you are doing mult-
DC and you are sensitive to ms order difference, you are probably doing it
wrong to begin with. i.e. You shouldn't do multi-DC for stock exchange.
z***y
发帖数: 7151
20
这个不奇怪啊。
你可以看一看那个procedure, 你看里面有几个对temp table 的改变, 这些数据的改
变都会触发
recompilation。
我这个版本是2008 SP2的。
create procedure sys.sp_replmonitorrefreshagentdata
as
begin
set nocount on
declare @retcode int
,@agent_id int
,@agent_id2 int
,@publisher_id int
,@xact_seqno varbinary(16)
,@logreader_latency int
,@publisher_db sysname
,@publication sysname

-- security check
-- Has to b... 阅读全帖
e****d
发帖数: 333
21
来自主题: Programming版 - linux, find command question
how to find all sub directories, where the target file lives, but no deepper
level?
for example, we have timestamp files for each directory, but we don't want
to find subfolder timestamp files any more. the files look like this
/usr/local/timestamp
/usr/local/bin/timestamp
/usr/local/lib/timestamp
/usr/name/timestamp
/media/v1/
/home/jk/
now we run a find command: find ???? timestamp
we get two files
/usr/local/timestamp
/usr/name/timestamp
all deeper level timestamps are not shown.
how to do th... 阅读全帖
f*****u
发帖数: 308
22
来自主题: JobHunting版 - G onsite面经兼求内推
1. 国男
2sum
数字有重复,比如如果sum是10,{2,2,2,8,8}里面算两个(2,8)pair。求pair总数。
Merge interval
对我的最后solution表示很满意。
2. 国男
stream of strings like this
"1 34 5 6"
"3 4 5 6 3"
"4 5 6 3 3"
...
每行是一个包含数字的string。去除所有数字完全重复的strings.比如这里的第二和第
三行数字完全相同,可以合并成一个。要求合并所有数字完全重复的strings。
最后表示对我的优化结果不满意。
3. 有点像东南亚或者拉美后裔,英文无口音
Reverse linkedlist
不断要求优化。
4. 欧洲人
写一个小游戏。MxN 的格子上有一条蛇,蛇头可以向前,左,右移动,撞到自己身体任
何部位或者撞到边界就算死。
5. 阿三
有N个node,每个都不停的向外发送timestamps,具体发送哪些timestamp是每个node决定
的,从其他node来说是随机的.现在要收集这些node发送的所有timestamp.如果某个
timestamp被... 阅读全帖
p***y
发帖数: 637
23
来自主题: JobHunting版 - G onsite面经兼求内推
".如果某个timestamp被发现从超过99%的node上发送出来,记录下来.需要怎么做?这些
timestamp很多,是不能完全放进去内存里面的.如果node非常多,怎么scale?"
有几个疑问:
1. 什么叫“某个timestamp被发现从超过99%的node上发送出来”, timestamp的精度
到小数点后多少位? 假定精确到毫秒,那就是在同一毫秒里99%的nodes都发了个
timestamp?
2. node非常多,还是得有个数量级,nodes的地理分布也影响结果。timestamp
非常多,也得有数量级。数量级不同,思路也不同。如果4个节点在一分钟内产生的t
imestamps能吃掉1TB空间,那估计只能依赖外存。又比如,如果有一万个
全球分布的节点,那搞分布式内存的额外开销也够呛。
假定节点数量大约数千个,在同一数据中心(或同一个云计算系统)。产生的数据量,
每台节点的timestamps在10分钟内把自己的内存吃光。
3. timestamps从源节点抵达目标节点的时间延迟多大?如果我们只关心是否某个t
imestampe来自99%的机器,完全可以不保持这些tim... 阅读全帖
t*i
发帖数: 72
24
来自主题: Programming版 - 10G文件的排序问题
自己是在搞不定,在这里绝望中寻找希望。
文件大概有10G,格式如下,Item有很多,大概有5000个.
Item1
timestamp XXXX
timestamp XXXX
.....
.....
Item2
timestamp XXX
timestamp XXXX
....
.....
.....
ItemN
timestamp XXX
timestamp XXXX
每个item的timestamp是按照顺序排列的。
我现在需要在这N(5000)个item里任选M(1--5000)个item, 当我给出这M个item的名称, 程序会自动按照他们的timestamp排序。
电脑没这么多内存,估计要用external sorting, 另外速度需要很快。
简单的例子:
item1
9:00:07 A
9:00:50 B
item2
9:00:03 A
9:00:40 B
Item3
9:00:07 A
9:00:55 B
item1, itme2的时序排列就是
item3 9:00:07 A
item1 9:00:07 A
item1 9:00:50 B
ite
b*********n
发帖数: 1258
25
来自主题: JobHunting版 - Dropbox电话面经
可以在300个counter的同时,再用300个timestamp,把counter and timestamp它们放
到同一个slot
getHit 的时候,把这300个slot加一遍,就可以了
300个slot扫一边,应该很快。
我觉得这个逻辑比较简单。
不知道是否忽略了什么问题。
import java.util.Date;
class Solution {
public static void main(String[] args) throws InterruptedException {
Answer ans = new Answer();
ans.hit();
ans.hit();
ans.hit();
Thread.sleep(1000);
ans.hit();
ans.hit();
System.out.println(ans.getHit());
}
}
class Answer {
Item[] buffer;
... 阅读全帖
x*********n
发帖数: 29
26
来自主题: JobHunting版 - L面经,请大家帮我看看
其实版上讨论过,我当时大概瞄过,光看了个用CIRCULAR BUFFER解,却不知道为啥。
面试官让写CODE就傻了,最后只好写了个用LINKEDLIST的。
题目就是有个msg class
class Msg
{
long key;
long value;
};
每个Msg都对应一个key。现在要设计一个class,实现如下功能
class Window
{
Window(int nMilliseconds);
addMsg(Msg m);
Msg getMsg(long key);
Double getAvg();
};
nMilliseconds给你了个time window,比如说如果是10分钟,你只保存当前为止10
分钟前的MSG。你需要能够添加信息,实现对于key的query(注意如果这个key对应的信
息是10分钟前的,就返回NULL), 和计算所有10分钟内msg的平均。
我本来想用circular array,但不知道该怎么存这些msg。还有就是每个key和msg应该
用map来存吧,但如果用CIRCULAR ARRAY对于过时的信息还是得在... 阅读全帖
a******n
发帖数: 206
27
先声明:我没有站边, either pump or dump btc. 只是读到了自己觉得不错的文章,
分享过来,想听听大牛怎么说。
链接在此:https://blog.chain.com/a-letter-to-jamie-dimon-de89d417cb80?from=
singlemessage&isappinstalled=0
原文很长。总结如下。
Cryptocurrencies (which I prefer to call crypto assets) are a new asset
class that enable decentralized applications
Decentralized applications enable services we already have today, like
payments, storage, or computing, but without a central operator of those
services
This software model is useful to people who need c... 阅读全帖
e****d
发帖数: 333
28
来自主题: Programming版 - linux, find command question
that does not work. we don't want to discard all path including timestamp
we want to have a subset of path which include timestamp.
The subset are the parent level of timestamp folders. if any timestamp file
is in a subfolder, the subfolder will be discarded in the results.
for example:
/parent/timestamp
/parent/children/timestamp
we want to have only /parent/timestamp in results.
thanks.
o****o
发帖数: 8077
29
来自主题: Statistics版 - 请问sas如何做两万次ttest不崩溃?
作T检验,只需要三个统计量嘛,N,MEAN,STD
先求summarized statistics,再用BY-processing。跑得时间不见得少,不过至少不会
崩溃。而且这个用BY-PROCESSING可以很容易并行,最后合并结果也很容易。
134
135
136 options fullstimer;
137 data class;
138 set sashelp.class;
139 array col{20000};
140 do j=1 to dim(col); col[j]=rannor(0); end;
141 drop j;
142 run;
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: The data set WORK.CLASS has 19 observations and 20005 variables.
NOTE: DATA statement used (Total process time):... 阅读全帖
m******g
发帖数: 100
30
来自主题: DataSciences版 - 请教一个面试题(已跪)
If the data is stored in a database, can't you do a SQL?
a1: current timestamp
a2: previous record within 10 mins window
SELECT a1.user_id, a1.TimeStamp as TimeStamp, SUM(a2.Activity_Count) as
visits_in_10mins
FROM activities a1
INNER JOIN activities a2
ON a1.TimeStamp BETWEEN a2.TimeStamp AND a2.TimeStamp + 10/(24*60)
AND a1.user_id = a2.user_id
GROUP BY a1.TimeStamp,a1.user_id
HAVING SUM(a2.Activity_Count) >= 500;
b*****n
发帖数: 618
31
1.这个题目主要是要减少读disk的次数和开销,首先按照file的size group一下,然后
在同group里面再找其他方法,这个我不确定,但是做md5被否决了,因为如果md5不存
下来就没啥用。我用的方法是每个file取开始的一段,比如128byte比较是不是有相同
的,相同的再分别group,group完了之后就没办法了,在同group里面的只能把文件全
读一遍比较。
onsite1.
这个版上讨论过多次了,就是不需要太精确,精确到秒,毫秒都行看memory需要多大,
如果是秒的话就是size为300的counter array,记录当前最早的timestamp作为head,
然后用current timestamp做tail,timestamp跟array index的关系是index =
timestamp%300.
如果最早的timestamp <= current timestamp - 300, 需要清除一部分。
onsite2.这个在提示下才做出来,block不是真的block,对面说可以用sleep()一个特
定的时间,那养的话就可以保存一个现在已经预支到什么时候... 阅读全帖
l******s
发帖数: 3045
32
来自主题: JobHunting版 - y的电面面经
seems similar to LRU cache
maintain a hashmap and listnode<{business_name, timestamp[]}, count =
timestamp.count>
at every refresh:
1. add or insert new node to a node in timestamp[] from message stream
2. traverse each node to remove timestamp of 10 mins ago (timestamp is a
sorted array)
3. on event of adding/inserting/removing timestamp, move node to sorted
position.
Plus: use ReaderWriter to make sure thread safe
f*********m
发帖数: 726
33
关于google的面试,有几个问题,请指点:
2 和一个同胞,直接中文。给了几个题目。第一个是判断括号组合是不是有效的。第
二个是判断一个树是不是另外一个树的flip。然后要讲时间是多少。 最后出了一个讨
论题目,说给了一个树,不一定是2叉树,让设计一个数据结构来serialize和
deserialize。
问题:flip是指一个Node的两个children交换次序吗?serialize是指把树转变到另一
种格式,比如字节流吗?我的想法是level by level的serialize树,遇到每个(非空
)Node,存其children的个数及node包含的值(他们用特殊符号,比如“&”分开,每
个level的最后一个node信息后面用“#”表示这个level结束。
3 和一个美国人吧。给一个矩阵和一个树k,要算另外一个矩阵。新的矩阵的每个位置
是老矩阵里面每个对应位置位中心变长为k的小矩阵的平均。用DP算法可以做到N^2。然
后实现这个算法。写了三个函数。
问题:这个题目不太理解。
4 和一个阿三。先做了一个题目是实现square root函数。用了牛顿方法。然后让给一
个初始... 阅读全帖
f*****u
发帖数: 308
34
来自主题: JobHunting版 - 问两道onsite题目
两道题来自不同的公司.
题一:
有N个node,每个都不停的向外发送timestamps,具体发送哪些timestamp是每个node决定
的,从其他node来说是随机的.现在要收集这些node发送的所有timestamp.如果某个
timestamp被发现从超过99%的node上发送出来,记录下来.需要怎么做?这些timestamp很
多,是不能完全放进去内存里面的.如果node非常多,怎么scale?
题二:
一个mxn的grid,要在里面随机生成K个格子.最直接的方法是一个for循环从1到K生成K个
随机格子,但是对每个当前生成的格子,需要检查前面是否已经生成过了,如果重复了需
要重新生成,这样时间上就超过了O(K).有方法在O(K)时间内实现吗?
f**********e
发帖数: 288
35
来自主题: JobHunting版 - 求解ts onsite 题。。请大牛解答
给你两个independent queue,每个queue都存着timestamp,只能有getNext()来取
queue里面的timestamp,每个timestamp只能被取一次,比较这两个queue里的
timestamp,如果差值<1,print这两个timestamp.
Q1 0.2, 1.4, 3.0
Q2 1.0 1.1, 3.5
output: (0.2, 1.0), (1.4, 1.0), (0.2, 1.1), (1.4, 1.1), (3.0, 3.5)
two sigma onsite 题。 我只想到用brute force。 有木有人给个更好的解法?
z*******3
发帖数: 13709
36
来自主题: JobHunting版 - 请教个面经里的设计题
clean操作你定义一个额外的变量isclean
每次都先check这个变量
然后读写的时候要记得放timestamp
isclean一样要放timestamp
对比两个timestamp先后来决定用哪个
就是上一次clean的timestamp之前的所有数据都不可用
都应该返回空
不过这题有个取巧的方法
你每次clean都new一个全新的数据结构,java有gc,丢掉的东西怎么clean
那是gc的事,跟你操作无关

n)
z*******3
发帖数: 13709
37
来自主题: JobHunting版 - 请教个面经里的设计题
clean操作你定义一个额外的变量isclean
每次都先check这个变量
然后读写的时候要记得放timestamp
isclean一样要放timestamp
对比两个timestamp先后来决定用哪个
就是上一次clean的timestamp之前的所有数据都不可用
都应该返回空
不过这题有个取巧的方法
你每次clean都new一个全新的数据结构,java有gc,丢掉的东西怎么clean
那是gc的事,跟你操作无关

n)
l*******0
发帖数: 95
38
来自主题: JobHunting版 - G家很喜欢出的一道setRPS设计题
This is a question about concurrency, the following code may work. Hope it's
helpful.
public class Solution {

AtomicInteger count = new AtomicInteger(0);
Integer limit = 0;
Integer startTimestamp = -1;
void setRPS(int num) {
limit = num;
}
bool process(int timestamp){ // suppose timestamp is ms
synchronized {
if(count.get() < limit) {
count.incrementAndGet();
return true;
... 阅读全帖
c*******y
发帖数: 1630
39
来自主题: Stock版 - my understand of IB data
4. delay data--I am not sure if IB is in the club of deliberately delaying
data with import data release time. I traded /6E with TDA during NFP. it was
terrible. Graph, quote, level 2, and time&sale were off sync, all of them
delayed by seconds if not minutes. I haven't tested IB during NFP or ECB
press conference(there is one tmr morning).
My guess it is slightly better than most other retail brokers.
By the way, I wonder if anyone here knows how to test latency, eg, read msg
latency, and send ... 阅读全帖
c*******y
发帖数: 1630
40
来自主题: Stock版 - my understand of IB data
4. delay data--I am not sure if IB is in the club of deliberately delaying
data with import data release time. I traded /6E with TDA during NFP. it was
terrible. Graph, quote, level 2, and time&sale were off sync, all of them
delayed by seconds if not minutes. I haven't tested IB during NFP or ECB
press conference(there is one tmr morning).
My guess it is slightly better than most other retail brokers.
By the way, I wonder if anyone here knows how to test latency, eg, read msg
latency, and send ... 阅读全帖
j***y
发帖数: 2074
41
Just came across a strange problem recently.
After a re-installation of my XP system on my Dell notebook, I found that if
I change a file's content(without changing the filename), the last modified
timestamp of the folder containing that file is not changed to reflect the
file's change on its timestamp.
Yet, before my re-installation, the folder's last modified timestamp always
reflects the latest change of last modified timestamp of the files contained
in it.
I am using MultiGo to edit the sgf ... 阅读全帖
u*********8
发帖数: 18
42
各位大牛, 我有一个函数, 生产用的, 运行没问题,就是太慢了,整个函数要20秒
,放web 就30秒了。 哪位大牛给
改改吧,多谢了。急用呢!
SQL> create or replace function ws_selectAwardCount_test
2 (
3 p_barcode varchar2
4 ) return VARCHAR2 is
5
6 v_id_of_job varchar2(100);
7 v_total_scanned number:=0;
8
9 v_barcode varchar2(32);
10
11 v_counter number:=0;
12
13 v_begin timestamp;
14 v_begin2 timestamp;
15 v_end timestamp;
16 v_end2 timestamp;
17 v_diff
b*f
发帖数: 3154
43
来自主题: Database版 - MS T-SQL 问题
这么一个例子:
IF OBJECT_ID('T1') IS NOT NULL
DROP TABLE T1;
GO
CREATE TABLE T1 (id int PRIMARY KEY, timestamp);
GO
INSERT INTO T1(id) VALUES (1);
GO
declare @v timestamp;
INSERT INTO T1(id) OUTPUT inserted.timestamp as v VALUES (10);
select @v
假设这个@v是俺想作为stored-procedure的OUT参数返回,怎样才能把inserted.
timestamp值传递给@v呢?
多谢,给俺解决问题的奉上双黄包一个...
s*********1
发帖数: 103
44
来自主题: Database版 - 求帮忙recover deleted rows in oracle
小弟不小心在几个表里deleted some rows in oracle, 试了试flashback, 还是解不了
问题,求高人指点。
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
昨天 //SQL> delete from plus_purl_request where id_of_job = 'CBG100049';
今天//SQL> select * from plus_purl_request where id_of_job = 'CBG100049';
no rows selected
SQL> alter table plus_purl_request enable row movement;
Table altered.
SQL> FLASHBACK TABLE plus_purl_request TO TIMESTAMP TO_TIMESTAMP('04/09... 阅读全帖
n****f
发帖数: 905
45
很有意思的考題。
就針對單一表來說。 我第一步, 要建立為 TIMESTAMP 索引。
第二步, 然後找出今天 TIMESTAMP 的第一個 LOAD_ID。
SELECT * FROM Positions WHERE LOAD_ID = (HERE YOUR SQL)
但是, 在現實當中, 這類事情不應該是這樣設計的。
DEVELOPER 要是這樣幹, 肯定是不行的。
應該要有一個 LOAD 的 TABLE。裡面有
LOAD—ID (PK)
TIMESTAMP (DATETIME)
這樣, 用戶要是要得到今天的 LOADID , 簡單查這個表就 OK 了。
有什麼原因要在 POSITION 表裡面加一個 重複成千上萬次的TIMESTAMP COLUMN? 查詢
的代價太大。
這個考題, 對於初學是能回答出結果, 但是很難提出改進意見。
因此說, 這不是考你 SQL , 是考你實戰經驗。
正確回答是, 給出 SQL , 但是指出這樣設計的缺欠, 並提供修正意見
t********5
发帖数: 274
46
来自主题: DotNet版 - 求救一个小问题
我也认为是button的事件里写的
可是我找不到那个button相关的任何代码
是flash,整个页面主要都是flash的,我以前没接触过flash方面的编程,不知道您有
没有什么猜想,我顺着路子去找一找
table.aspx页面,就是有聊天窗口,有send按钮的这个页面
<%@ Page Title="" Language="VB" MasterPageFile="~/Shared/xxxx.master"
AutoEventWireup="false"
CodeFile="table.aspx.vb" Inherits="VNT_table" %>
"Server">

阅读全帖
b*****l
发帖数: 9499
47
来自主题: Linux版 - 俺土俺知道
另外,怀疑是不是显卡驱动或者 xorg.conf 的问题
$lspci | grep VGA 的结果是
0a:03.0 VGA compatible controller: Matrox Graphics, Inc. MGA G200eW WPCM450
(rev 0a)
/etc/X11/xorg.conf 是用 Xorg -configure 生成的。。。
/var/log/gdm3/:0-greeter.log 的内容是:
gnome-session[28930]: atk-bridge-WARNING: AT_SPI_REGISTRY was not started at
session startup.
gnome-session[28930]: atk-bridge-WARNING: IOR not set.
gnome-session[28930]: atk-bridge-WARNING: Could not locate registry
** (:28938): DEBUG: Client registered with session manage... 阅读全帖
m***t
发帖数: 254
48
来自主题: Programming版 - 一个没想明白的问题
I have a client that querys server every 1 hour. It stores local cache for
the stuff it downloaded from
server. The client local cache carries a timestamp, called client_time_stamp
. Everytime the client querys
the server, the server compares the client timestamp with a server timestamp
about the data the client
needs. If the data has not changed, the server timestamp will be older than
the cache_time_stamp, thus
the server will just return cache_valid, and client preserves old client_
time_stam
E*********s
发帖数: 11
49
来自主题: Programming版 - 弱问perl写网页buffer问题
程序如下
#!d:/strawberry/perl/bin/perl.exe
#
#use strict;
use CGI;
use IO::Handle;
$myCGI = new CGI;
#$| = 1;
my $url="some url";
print $myCGI->header;
my $test="\n
\n";
STDOUT->autoflush(1);
print $test;
my $time = time();
my $timestamp = localtime($time);
print $timest... 阅读全帖
z****e
发帖数: 54598
50
来自主题: Programming版 - 出票正确率的定义,赵,姜请进。

你还不懂嘛?
以s为单位
timestamp
如果timestamp相同
则pool起来,找最优解
如果timestamp不一样
谁先谁优先级高
就这么简单
pool起来主要是伺候秒杀的热门线路
这个几乎一定会拥堵,可以很容易找出timestamp相同的票申请
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)