Questions tagged [large-text]
22 questions
6
votes
2 answers
Time efficient way to skip no of line from very large text file (16gb) using python
I have a very large text file of 16gb . I need to skip no of line .I want to skip those line in time efficient manner. I am using python for code.how to do that ?

Abhi
- 61
- 3
6
votes
1 answer
Cannot display a Unicode character (Emoji) in an Android TextView with large text: "Font size too large to fit in cache"
I'm trying to display a single Unicode character (an emoji) in a TextView, with a large(r) text size:
mEmojiTextView = (TextView) findViewById(R.id.emoji_text_view);
mEmojiTextView.setTextSize(200);
mEmojiTextView.setText("\uD83D\uDE01");
The…

TechAurelian
- 5,561
- 5
- 50
- 65
5
votes
2 answers
Best way to store large searchable text files
I am developing an online Bible search program. The Bible is a pretty large book, taking up nearly 5MB of space in plain text. I am planning on implementing an API in the program as well allowing other websites to include their own Bible search…

Patrick Stephan
- 1,809
- 16
- 23
5
votes
4 answers
How to open a large text file in C#
I have a text file that contains about 100000 articles.
The structure of file is:
.Document ID 42944-YEAR:5
.Date 03\08\11
.Cat political
Article Content 1
.Document ID 42945-YEAR:5
.Date 03\08\11
.Cat political
Article Content 2
I want to…

Hossein
- 1,640
- 2
- 26
- 41
2
votes
1 answer
High CPU usage by unknown process in multithreading
We have server with 35gb memory and Intel® Xeon(R) E5-1620 0 @ 3.60GHz × 8 CPU. I am running a multithreaded program designed with akka actors and written in scala. In the program, there are 4 actors with tasks:
1) Lazy reading from file with…

katilsperm
- 61
- 1
- 5
2
votes
1 answer
Create large text field in Eloqua using REST API
I was trying to create custom object and corresponding fields in Eloqua. While creating a field with datatype largeText it throws validation error. I can create fields with datatypes like date, text, numeric etc. How can I create largeText…

Reshma Raveendran
- 21
- 2
2
votes
2 answers
Search many strings over a very large text
I have like 2 million strings and I need to search each of them over a 1 TB text data. Searching all of them is not a best solution to do, so I was thinking about a better way to create a data structure like trie for all of the strings. In other…

omid askari
- 41
- 1
- 5
2
votes
1 answer
High performance large text storage solution
Here is the scenario:
1) All the data currently is stored in SQL Server
2) There is one table X that stores the most important and highly accessed data
3) Each record in the table X has one column Y that stores up to 2GB of text
4) Number of records…

Chicago
- 1,619
- 4
- 19
- 32
1
vote
1 answer
How to detect if a label text is truncated, in Xamarin Forms?
The label text is coming dynamically, sometimes it is short and sometimes it is huge. I am using LineBreakMode = TailTruncation and I want to detect that if the text is truncated, I need to show the icon for see more, otherwise not.
So, is there a…

Akash Dhyani
- 11
- 1
1
vote
2 answers
Datatype sizes and storage in mysql
I'm a begginer using mysql datatbase. I'm trying to save user data in a large Json file which in worst case will have a size around 5Mb its obvious that I should use LARGE TEXT, but I wanted to know what happens to the rest of 11Mb. Is it wasted?
user4875712
1
vote
1 answer
suitable data type to save string larger than 8000 charachter
what is the suitable data type to save string more than 8000 character in SQL database?

kartal
- 17,436
- 34
- 100
- 145
1
vote
1 answer
Ignoring android large text settings changes in android application?
Currently, I've broken UI when large text is enable in setting accessibility. Is there a tag in manifest or any other solution, to ignore textsize increase and decrease in TextView after check & uncheck large text in accessibility setting.

kabindra
- 138
- 1
- 10
0
votes
0 answers
How can I edit large and multi-line text columns in MS-SSMS?
In MS-Access there was a really handy feature called "Zoom" that allowed one to edit large text cells (columns) without a lot of scrolling or re-pasting. You'd press Shift F2 and a multi-line edit box would pop up (see sample). Is there anything…

FloverOwe
- 302
- 2
- 8
0
votes
0 answers
Scrollview on TextView continues scrolling while text inside the textview ends
I am facing issue of scrolling of large text view. Scrolling working good but when text ends from bottom of screen scroll view still scroll the view almost 1 times equals of the height of device.
here is my code of xml.

Shani74
- 43
- 8
0
votes
1 answer
Large font size of hypelink text on wordpress
My linked text (hyperlinks) on my WordPress blog appear bigger than the other paragraph texts. I have tried a couple of CSS codes to override it but its still unchanged. Please suggest an effective CSS code that can override this issue?. See how the…

Mary-ann
- 3
- 1