הרשם שאלות ותשובות רשימת חברים לוח שנה הודעות מהיום

חזור   הוסטס - פורום אחסון האתרים הגדול בישראל > מסחר > מסחר - קניה/ מכירות שונות (לא הוסטינג)

   
|!|

סגור את ההודעה
 
כלים לאשכול תצורת הצגה
ישן 03-11-08, 01:21   # 1
intercooler3819
חבר וותיק
דירוג מסחר: (0)
 
מיני פרופיל
תאריך הצטרפות: Jul 2008
הודעות: 1,056

intercooler3819 לא מחובר  

דטאבייס של 140 אלף קישורי הורדות (ראפידשר מגה אפלואד וכו')

פרסמתי את זה באנגלית אז אני פשוט יצטט

Hi,
I have made a robot 2 weeks ago which fetchs and index'es rapidshare, megaupload and other free-upload websites download links into database table.
It runs automaticly each 5 hours and collect the links from about 20-30 websites.
In 2 weeks I have this:
100,000 links, indexed in mysql table.
The table takes 20MB of space
The table scheme is like this:
קוד:
-- --------------------------------------------------------

--
-- Table structure for table `search`
--

CREATE TABLE IF NOT EXISTS `search` (
  `id` int(11) NOT NULL auto_increment,
  `time` int(10) default NULL, // the insertion time in unixtimestamp format
  `unique` varchar(255) collate utf8_unicode_ci default NULL, // the website unique file id
  `site` varchar(50) collate utf8_unicode_ci default NULL, // the website unique name
  `url` varchar(255) collate utf8_unicode_ci default NULL, // the file full url
  `filename` varchar(255) collate utf8_unicode_ci default NULL, // the filename, might be blank
  `snippet` varchar(255) collate utf8_unicode_ci default NULL, // the context, usually title, snippet from google search, description, etc
  `tags` varchar(255) collate utf8_unicode_ci default NULL, // tags like "porno", "gays", "hot chicks" etc, usually blank
  `password` varchar(255) collate utf8_unicode_ci default NULL, // if the robot found out there is password, this is where it saves it
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=51048 ;
INSERT queries examples from the latest links:
קוד:
INSERT INTO `search` VALUES (null, 1225466050, 'WORJGWTK', 'megaupload', 'http://www.megaupload.com/?d=WORJGWTK', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'WORJGWTK', 'megaupload', 'http://www.megaupload.com/?d=WORJGWTK', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'X8JGOPLW', 'megaupload', 'http://www.megaupload.com/?d=X8JGOPLW', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'X8JGOPLW', 'megaupload', 'http://www.megaupload.com/?d=X8JGOPLW', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'W6SPVVBA', 'megaupload', 'http://www.megaupload.com/?d=W6SPVVBA', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'W6SPVVBA', 'megaupload', 'http://www.megaupload.com/?d=W6SPVVBA', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'P8NBWZ3X', 'megaupload', 'http://www.megaupload.com/?d=P8NBWZ3X', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, 'P8NBWZ3X', 'megaupload', 'http://www.megaupload.com/?d=P8NBWZ3X', '', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg');
Code:
קוד:
INSERT INTO `search` VALUES (null, 1225466050, '156975650', 'rapidshare', 'http://rapidshare.com/files/156975650/sprntl406-notv.part1.rar', 'sprntl406-notv.part1.rar', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466050, '156975660', 'rapidshare', 'http://rapidshare.com/files/156975660/sprntl406-notv.part2.rar', 'sprntl406-notv.part2.rar', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466051, '156975651', 'rapidshare', 'http://rapidshare.com/files/156975651/sprntl406-notv.part3.rar', 'sprntl406-notv.part3.rar', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg'),(null, 1225466051, '156975597', 'rapidshare', 'http://rapidshare.com/files/156975597/sprntl406-notv.part4.rar', 'sprntl406-notv.part4.rar', 'Supernatural S04E06 HDTV XviD-NoTV', '', 'areg');
(the auto increment is kinda old because I fetched this information from an old txt file)


FAQ

Q: Are there any doubled links?
A: There are no double / duplicated links since the robot checks the database for duplicates before adding the links.

Q: Are there any removed (aka no-working) links?
A: There database has NOT been checked for not working links, but the links are from the latest 14 days, so personally, I don't think there are any not-working or removed links.

I even don't know how to quote this thing, so you can just come up with price tags and I may proceed with the sell (;
__________________
 
ישן 03-11-08, 03:21   # 2
Tomer
Whatever
דירוג מסחר: (0)
 
Tomer's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 7,039
שלח הודעה באמצעות MSN אל Tomer Send a message via Skype™ to Tomer

Tomer לא מחובר  

מה גורם לך לחשוב שזה חוקי ?
__________________
תומר
 
סגור את ההודעה

חברים פעילים הצופים באשכול זה: 1 (0 חברים ו- 1 אורחים)
 


חוקי פירסום
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is מופעל
סמיילים הם מופעל
[IMG] קוד מופעל
קוד HTML מכובה

קפיצה לפורום


כל הזמנים הם GMT +2. הזמן כעת הוא 00:11.

מופעל באמצעות VBulletin גרסה 3.8.6
כל הזכויות שמורות ©
כל הזכויות שמורות לסולל יבוא ורשתות (1997) בע"מ